Gong · Capability

Gong Meetings API — Meetings

Gong Meetings API — Meetings. 4 operations. Lead operation: Create a Gong meeting. Self-contained Naftiko capability covering one Gong business surface.

Run with Naftiko GongMeetings

What You Can Do

POST
Createmeeting — Create a Gong meeting
/v1/meetings
POST
Validatemeetingintegrationstatus — Gong Validate meeting integration status
/v1/meetings/integration-status
PUT
Updatemeeting — Update a Gong meeting
/v1/meetings/{meetingid}
DELETE
Deletemeeting — Delete a Gong meeting
/v1/meetings/{meetingid}

MCP Tools

create-gong-meeting

Create a Gong meeting

gong-validate-meeting-integration-status

Gong Validate meeting integration status

read-only
update-gong-meeting

Update a Gong meeting

idempotent
delete-gong-meeting

Delete a Gong meeting

idempotent

Capability Spec

meetings-meetings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Gong Meetings API — Meetings
  description: 'Gong Meetings API — Meetings. 4 operations. Lead operation: Create a Gong meeting. Self-contained Naftiko
    capability covering one Gong business surface.'
  tags:
  - Gong
  - Meetings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GONG_API_KEY: GONG_API_KEY
capability:
  consumes:
  - type: http
    namespace: meetings-meetings
    baseUri: https://api.gong.io/v2
    description: Gong Meetings API — Meetings business capability. Self-contained, no shared references.
    resources:
    - name: meetings
      path: /meetings
      operations:
      - name: createmeeting
        method: POST
        description: Create a Gong meeting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: meetings-integration-status
      path: /meetings/integration-status
      operations:
      - name: validatemeetingintegrationstatus
        method: POST
        description: Gong Validate meeting integration status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: meetings-meetingId
      path: /meetings/{meetingId}
      operations:
      - name: updatemeeting
        method: PUT
        description: Update a Gong meeting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: meetingId
          in: path
          type: string
          description: The unique identifier of the meeting to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletemeeting
        method: DELETE
        description: Delete a Gong meeting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: meetingId
          in: path
          type: string
          description: The unique identifier of the meeting to delete.
          required: true
    authentication:
      type: bearer
      token: '{{env.GONG_API_KEY}}'
  exposes:
  - type: rest
    namespace: meetings-meetings-rest
    port: 8080
    description: REST adapter for Gong Meetings API — Meetings. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/meetings
      name: meetings
      description: REST surface for meetings.
      operations:
      - method: POST
        name: createmeeting
        description: Create a Gong meeting
        call: meetings-meetings.createmeeting
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/meetings/integration-status
      name: meetings-integration-status
      description: REST surface for meetings-integration-status.
      operations:
      - method: POST
        name: validatemeetingintegrationstatus
        description: Gong Validate meeting integration status
        call: meetings-meetings.validatemeetingintegrationstatus
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/meetings/{meetingid}
      name: meetings-meetingid
      description: REST surface for meetings-meetingId.
      operations:
      - method: PUT
        name: updatemeeting
        description: Update a Gong meeting
        call: meetings-meetings.updatemeeting
        with:
          meetingId: rest.meetingId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletemeeting
        description: Delete a Gong meeting
        call: meetings-meetings.deletemeeting
        with:
          meetingId: rest.meetingId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: meetings-meetings-mcp
    port: 9090
    transport: http
    description: MCP adapter for Gong Meetings API — Meetings. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: create-gong-meeting
      description: Create a Gong meeting
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: meetings-meetings.createmeeting
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: gong-validate-meeting-integration-status
      description: Gong Validate meeting integration status
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: meetings-meetings.validatemeetingintegrationstatus
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: update-gong-meeting
      description: Update a Gong meeting
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: meetings-meetings.updatemeeting
      with:
        meetingId: tools.meetingId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-gong-meeting
      description: Delete a Gong meeting
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: meetings-meetings.deletemeeting
      with:
        meetingId: tools.meetingId
      outputParameters:
      - type: object
        mapping: $.