RingCentral · Capability

RingCentral API — Registrants

RingCentral API — Registrants. 4 operations. Lead operation: List Session Registrants. Self-contained Naftiko capability covering one Ringcentral business surface.

Run with Naftiko RingcentralRegistrants

What You Can Do

GET
Rcwreglistregistrants — List Session Registrants
/v1/webinar/registration/v1/sessions/{sessionid}/registrants
POST
Rcwregcreateregistrant — Create Registrant
/v1/webinar/registration/v1/sessions/{sessionid}/registrants
GET
Rcwreggetregistrant — Get Registrant
/v1/webinar/registration/v1/sessions/{sessionid}/registrants/{registrantid}
DELETE
Rcwregdeleteregistrant — Delete Registrant
/v1/webinar/registration/v1/sessions/{sessionid}/registrants/{registrantid}

MCP Tools

list-session-registrants

List Session Registrants

read-only idempotent
create-registrant

Create Registrant

get-registrant

Get Registrant

read-only idempotent
delete-registrant

Delete Registrant

idempotent

Capability Spec

platform-registrants.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: RingCentral API — Registrants
  description: 'RingCentral API — Registrants. 4 operations. Lead operation: List Session Registrants. Self-contained Naftiko
    capability covering one Ringcentral business surface.'
  tags:
  - Ringcentral
  - Registrants
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RINGCENTRAL_API_KEY: RINGCENTRAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-registrants
    baseUri: https://platform.ringcentral.com
    description: RingCentral API — Registrants business capability. Self-contained, no shared references.
    resources:
    - name: webinar-registration-v1-sessions-sessionId-registrants
      path: /webinar/registration/v1/sessions/{sessionId}/registrants
      operations:
      - name: rcwreglistregistrants
        method: GET
        description: List Session Registrants
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: rcwregcreateregistrant
        method: POST
        description: Create Registrant
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: webinar-registration-v1-sessions-sessionId-registrants-registrantId
      path: /webinar/registration/v1/sessions/{sessionId}/registrants/{registrantId}
      operations:
      - name: rcwreggetregistrant
        method: GET
        description: Get Registrant
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: rcwregdeleteregistrant
        method: DELETE
        description: Delete Registrant
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.RINGCENTRAL_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-registrants-rest
    port: 8080
    description: REST adapter for RingCentral API — Registrants. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/webinar/registration/v1/sessions/{sessionid}/registrants
      name: webinar-registration-v1-sessions-sessionid-registrants
      description: REST surface for webinar-registration-v1-sessions-sessionId-registrants.
      operations:
      - method: GET
        name: rcwreglistregistrants
        description: List Session Registrants
        call: platform-registrants.rcwreglistregistrants
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: rcwregcreateregistrant
        description: Create Registrant
        call: platform-registrants.rcwregcreateregistrant
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/webinar/registration/v1/sessions/{sessionid}/registrants/{registrantid}
      name: webinar-registration-v1-sessions-sessionid-registrants-registrantid
      description: REST surface for webinar-registration-v1-sessions-sessionId-registrants-registrantId.
      operations:
      - method: GET
        name: rcwreggetregistrant
        description: Get Registrant
        call: platform-registrants.rcwreggetregistrant
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: rcwregdeleteregistrant
        description: Delete Registrant
        call: platform-registrants.rcwregdeleteregistrant
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-registrants-mcp
    port: 9090
    transport: http
    description: MCP adapter for RingCentral API — Registrants. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-session-registrants
      description: List Session Registrants
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-registrants.rcwreglistregistrants
      outputParameters:
      - type: object
        mapping: $.
    - name: create-registrant
      description: Create Registrant
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-registrants.rcwregcreateregistrant
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-registrant
      description: Get Registrant
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-registrants.rcwreggetregistrant
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-registrant
      description: Delete Registrant
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: platform-registrants.rcwregdeleteregistrant
      outputParameters:
      - type: object
        mapping: $.