RingCentral · Capability

RingCentral API — Incoming Webhooks

RingCentral API — Incoming Webhooks. 7 operations. Lead operation: List Webhooks in Group. Self-contained Naftiko capability covering one Ringcentral business surface.

Run with Naftiko RingcentralIncoming Webhooks

What You Can Do

GET
Listglipgroupwebhooksnew — List Webhooks in Group
/v1/team-messaging/v1/groups/{groupid}/webhooks
POST
Createglipgroupwebhooknew — Create Webhook in Group
/v1/team-messaging/v1/groups/{groupid}/webhooks
GET
Listglipwebhooksnew — List Webhooks
/v1/team-messaging/v1/webhooks
GET
Readglipwebhooknew — Get Webhook
/v1/team-messaging/v1/webhooks/{webhookid}
DELETE
Deleteglipwebhooknew — Delete Webhook
/v1/team-messaging/v1/webhooks/{webhookid}
POST
Activateglipwebhooknew — Activate Webhook
/v1/team-messaging/v1/webhooks/{webhookid}/activate
POST
Suspendglipwebhooknew — Suspend Webhook
/v1/team-messaging/v1/webhooks/{webhookid}/suspend

MCP Tools

list-webhooks-group

List Webhooks in Group

read-only idempotent
create-webhook-group

Create Webhook in Group

list-webhooks

List Webhooks

read-only idempotent
get-webhook

Get Webhook

read-only idempotent
delete-webhook

Delete Webhook

idempotent
activate-webhook

Activate Webhook

suspend-webhook

Suspend Webhook

Capability Spec

platform-incoming-webhooks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: RingCentral API — Incoming Webhooks
  description: 'RingCentral API — Incoming Webhooks. 7 operations. Lead operation: List Webhooks in Group. Self-contained
    Naftiko capability covering one Ringcentral business surface.'
  tags:
  - Ringcentral
  - Incoming Webhooks
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RINGCENTRAL_API_KEY: RINGCENTRAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-incoming-webhooks
    baseUri: https://platform.ringcentral.com
    description: RingCentral API — Incoming Webhooks business capability. Self-contained, no shared references.
    resources:
    - name: team-messaging-v1-groups-groupId-webhooks
      path: /team-messaging/v1/groups/{groupId}/webhooks
      operations:
      - name: listglipgroupwebhooksnew
        method: GET
        description: List Webhooks in Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: groupId
          in: path
          type: string
          description: Internal identifier of a group
          required: true
      - name: createglipgroupwebhooknew
        method: POST
        description: Create Webhook in Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: groupId
          in: path
          type: string
          description: Internal identifier of a group
          required: true
    - name: team-messaging-v1-webhooks
      path: /team-messaging/v1/webhooks
      operations:
      - name: listglipwebhooksnew
        method: GET
        description: List Webhooks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: team-messaging-v1-webhooks-webhookId
      path: /team-messaging/v1/webhooks/{webhookId}
      operations:
      - name: readglipwebhooknew
        method: GET
        description: Get Webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: webhookId
          in: path
          type: array
          description: Internal identifier of a webhook or comma separated list of webhooks IDs
          required: true
      - name: deleteglipwebhooknew
        method: DELETE
        description: Delete Webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: webhookId
          in: path
          type: string
          description: Internal identifier of a webhook
          required: true
    - name: team-messaging-v1-webhooks-webhookId-activate
      path: /team-messaging/v1/webhooks/{webhookId}/activate
      operations:
      - name: activateglipwebhooknew
        method: POST
        description: Activate Webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: webhookId
          in: path
          type: string
          description: Internal identifier of a webhook
          required: true
    - name: team-messaging-v1-webhooks-webhookId-suspend
      path: /team-messaging/v1/webhooks/{webhookId}/suspend
      operations:
      - name: suspendglipwebhooknew
        method: POST
        description: Suspend Webhook
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: webhookId
          in: path
          type: string
          description: Internal identifier of a webhook
          required: true
    authentication:
      type: bearer
      token: '{{env.RINGCENTRAL_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-incoming-webhooks-rest
    port: 8080
    description: REST adapter for RingCentral API — Incoming Webhooks. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/team-messaging/v1/groups/{groupid}/webhooks
      name: team-messaging-v1-groups-groupid-webhooks
      description: REST surface for team-messaging-v1-groups-groupId-webhooks.
      operations:
      - method: GET
        name: listglipgroupwebhooksnew
        description: List Webhooks in Group
        call: platform-incoming-webhooks.listglipgroupwebhooksnew
        with:
          groupId: rest.groupId
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createglipgroupwebhooknew
        description: Create Webhook in Group
        call: platform-incoming-webhooks.createglipgroupwebhooknew
        with:
          groupId: rest.groupId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/team-messaging/v1/webhooks
      name: team-messaging-v1-webhooks
      description: REST surface for team-messaging-v1-webhooks.
      operations:
      - method: GET
        name: listglipwebhooksnew
        description: List Webhooks
        call: platform-incoming-webhooks.listglipwebhooksnew
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/team-messaging/v1/webhooks/{webhookid}
      name: team-messaging-v1-webhooks-webhookid
      description: REST surface for team-messaging-v1-webhooks-webhookId.
      operations:
      - method: GET
        name: readglipwebhooknew
        description: Get Webhook
        call: platform-incoming-webhooks.readglipwebhooknew
        with:
          webhookId: rest.webhookId
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteglipwebhooknew
        description: Delete Webhook
        call: platform-incoming-webhooks.deleteglipwebhooknew
        with:
          webhookId: rest.webhookId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/team-messaging/v1/webhooks/{webhookid}/activate
      name: team-messaging-v1-webhooks-webhookid-activate
      description: REST surface for team-messaging-v1-webhooks-webhookId-activate.
      operations:
      - method: POST
        name: activateglipwebhooknew
        description: Activate Webhook
        call: platform-incoming-webhooks.activateglipwebhooknew
        with:
          webhookId: rest.webhookId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/team-messaging/v1/webhooks/{webhookid}/suspend
      name: team-messaging-v1-webhooks-webhookid-suspend
      description: REST surface for team-messaging-v1-webhooks-webhookId-suspend.
      operations:
      - method: POST
        name: suspendglipwebhooknew
        description: Suspend Webhook
        call: platform-incoming-webhooks.suspendglipwebhooknew
        with:
          webhookId: rest.webhookId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-incoming-webhooks-mcp
    port: 9090
    transport: http
    description: MCP adapter for RingCentral API — Incoming Webhooks. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-webhooks-group
      description: List Webhooks in Group
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-incoming-webhooks.listglipgroupwebhooksnew
      with:
        groupId: tools.groupId
      outputParameters:
      - type: object
        mapping: $.
    - name: create-webhook-group
      description: Create Webhook in Group
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-incoming-webhooks.createglipgroupwebhooknew
      with:
        groupId: tools.groupId
      outputParameters:
      - type: object
        mapping: $.
    - name: list-webhooks
      description: List Webhooks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-incoming-webhooks.listglipwebhooksnew
      outputParameters:
      - type: object
        mapping: $.
    - name: get-webhook
      description: Get Webhook
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-incoming-webhooks.readglipwebhooknew
      with:
        webhookId: tools.webhookId
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-webhook
      description: Delete Webhook
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: platform-incoming-webhooks.deleteglipwebhooknew
      with:
        webhookId: tools.webhookId
      outputParameters:
      - type: object
        mapping: $.
    - name: activate-webhook
      description: Activate Webhook
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-incoming-webhooks.activateglipwebhooknew
      with:
        webhookId: tools.webhookId
      outputParameters:
      - type: object
        mapping: $.
    - name: suspend-webhook
      description: Suspend Webhook
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-incoming-webhooks.suspendglipwebhooknew
      with:
        webhookId: tools.webhookId
      outputParameters:
      - type: object
        mapping: $.