RingCentral · Capability

RingCentral API — Contents

RingCentral API — Contents. 3 operations. Lead operation: List All Contents. Self-contained Naftiko capability covering one Ringcentral business surface.

Run with Naftiko RingcentralContents

What You Can Do

GET
Socmsglistcontents — List All Contents
/v1/cx/social-messaging/v1/contents
POST
Socmsgcreatecontent — Create Content
/v1/cx/social-messaging/v1/contents
GET
Socmsggetcontent — Get Content
/v1/cx/social-messaging/v1/contents/{contentid}

MCP Tools

list-all-contents

List All Contents

read-only idempotent
create-content

Create Content

get-content

Get Content

read-only idempotent

Capability Spec

platform-contents.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: RingCentral API — Contents
  description: 'RingCentral API — Contents. 3 operations. Lead operation: List All Contents. Self-contained Naftiko capability
    covering one Ringcentral business surface.'
  tags:
  - Ringcentral
  - Contents
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RINGCENTRAL_API_KEY: RINGCENTRAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-contents
    baseUri: https://platform.ringcentral.com
    description: RingCentral API — Contents business capability. Self-contained, no shared references.
    resources:
    - name: cx-social-messaging-v1-contents
      path: /cx/social-messaging/v1/contents
      operations:
      - name: socmsglistcontents
        method: GET
        description: List All Contents
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: socmsgcreatecontent
        method: POST
        description: Create Content
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: cx-social-messaging-v1-contents-contentId
      path: /cx/social-messaging/v1/contents/{contentId}
      operations:
      - name: socmsggetcontent
        method: GET
        description: Get Content
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.RINGCENTRAL_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-contents-rest
    port: 8080
    description: REST adapter for RingCentral API — Contents. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/cx/social-messaging/v1/contents
      name: cx-social-messaging-v1-contents
      description: REST surface for cx-social-messaging-v1-contents.
      operations:
      - method: GET
        name: socmsglistcontents
        description: List All Contents
        call: platform-contents.socmsglistcontents
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: socmsgcreatecontent
        description: Create Content
        call: platform-contents.socmsgcreatecontent
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/cx/social-messaging/v1/contents/{contentid}
      name: cx-social-messaging-v1-contents-contentid
      description: REST surface for cx-social-messaging-v1-contents-contentId.
      operations:
      - method: GET
        name: socmsggetcontent
        description: Get Content
        call: platform-contents.socmsggetcontent
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-contents-mcp
    port: 9090
    transport: http
    description: MCP adapter for RingCentral API — Contents. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-all-contents
      description: List All Contents
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-contents.socmsglistcontents
      outputParameters:
      - type: object
        mapping: $.
    - name: create-content
      description: Create Content
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-contents.socmsgcreatecontent
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-content
      description: Get Content
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-contents.socmsggetcontent
      outputParameters:
      - type: object
        mapping: $.