Riverside · Capability

Riverside Business API — Webinars

Riverside Business API — Webinars. 2 operations. Lead operation: Create Webinar Registrant. Self-contained Naftiko capability covering one Riverside business surface.

Run with Naftiko RiversideWebinars

What You Can Do

POST
Createwebinarregistrant — Create Webinar Registrant
/v1/api/v1/webinars/{webinar-id}/registrants
GET
Getregistrants — Get Registrants
/v1/api/v1/webinars/{webinar-id}/registrants

MCP Tools

create-webinar-registrant

Create Webinar Registrant

get-registrants

Get Registrants

read-only idempotent

Capability Spec

business-webinars.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Riverside Business API — Webinars
  description: 'Riverside Business API — Webinars. 2 operations. Lead operation: Create Webinar Registrant. Self-contained
    Naftiko capability covering one Riverside business surface.'
  tags:
  - Riverside
  - Webinars
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RIVERSIDE_API_KEY: RIVERSIDE_API_KEY
capability:
  consumes:
  - type: http
    namespace: business-webinars
    baseUri: https://platform.riverside.fm
    description: Riverside Business API — Webinars business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-webinars-webinar_id-registrants
      path: /api/v1/webinars/{webinar_id}/registrants
      operations:
      - name: createwebinarregistrant
        method: POST
        description: Create Webinar Registrant
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: webinar_id
          in: path
          type: string
          description: The webinar ID
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: getregistrants
        method: GET
        description: Get Registrants
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: webinar_id
          in: path
          type: string
          description: The webinar ID
          required: true
    authentication:
      type: bearer
      token: '{{env.RIVERSIDE_API_KEY}}'
  exposes:
  - type: rest
    namespace: business-webinars-rest
    port: 8080
    description: REST adapter for Riverside Business API — Webinars. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/v1/webinars/{webinar-id}/registrants
      name: api-v1-webinars-webinar-id-registrants
      description: REST surface for api-v1-webinars-webinar_id-registrants.
      operations:
      - method: POST
        name: createwebinarregistrant
        description: Create Webinar Registrant
        call: business-webinars.createwebinarregistrant
        with:
          webinar_id: rest.webinar_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getregistrants
        description: Get Registrants
        call: business-webinars.getregistrants
        with:
          webinar_id: rest.webinar_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: business-webinars-mcp
    port: 9090
    transport: http
    description: MCP adapter for Riverside Business API — Webinars. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: create-webinar-registrant
      description: Create Webinar Registrant
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: business-webinars.createwebinarregistrant
      with:
        webinar_id: tools.webinar_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-registrants
      description: Get Registrants
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: business-webinars.getregistrants
      with:
        webinar_id: tools.webinar_id
      outputParameters:
      - type: object
        mapping: $.