RingCentral · Capability

RingCentral API — Compliance Exports

RingCentral API — Compliance Exports. 3 operations. Lead operation: List Data Export Tasks. Self-contained Naftiko capability covering one Ringcentral business surface.

Run with Naftiko RingcentralCompliance Exports

What You Can Do

GET
Listdataexporttasksnew — List Data Export Tasks
/v1/team-messaging/v1/data-export
POST
Createdataexporttasknew — Create Data Export Task
/v1/team-messaging/v1/data-export
GET
Readdataexporttasknew — Get Data Export Task
/v1/team-messaging/v1/data-export/{taskid}

MCP Tools

list-data-export-tasks

List Data Export Tasks

read-only idempotent
create-data-export-task

Create Data Export Task

get-data-export-task

Get Data Export Task

read-only idempotent

Capability Spec

platform-compliance-exports.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: RingCentral API — Compliance Exports
  description: 'RingCentral API — Compliance Exports. 3 operations. Lead operation: List Data Export Tasks. Self-contained
    Naftiko capability covering one Ringcentral business surface.'
  tags:
  - Ringcentral
  - Compliance Exports
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RINGCENTRAL_API_KEY: RINGCENTRAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-compliance-exports
    baseUri: https://platform.ringcentral.com
    description: RingCentral API — Compliance Exports business capability. Self-contained, no shared references.
    resources:
    - name: team-messaging-v1-data-export
      path: /team-messaging/v1/data-export
      operations:
      - name: listdataexporttasksnew
        method: GET
        description: List Data Export Tasks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
          description: Status of the task(s) to be returned. Multiple values are supported
        - name: page
          in: query
          type: integer
          description: Page number to be retrieved; value range is > 0
        - name: perPage
          in: query
          type: integer
          description: Number of records to be returned per page; value range is 1 - 250
      - name: createdataexporttasknew
        method: POST
        description: Create Data Export Task
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: team-messaging-v1-data-export-taskId
      path: /team-messaging/v1/data-export/{taskId}
      operations:
      - name: readdataexporttasknew
        method: GET
        description: Get Data Export Task
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: taskId
          in: path
          type: string
          description: Internal identifier of a task to be retrieved
          required: true
    authentication:
      type: bearer
      token: '{{env.RINGCENTRAL_API_KEY}}'
  exposes:
  - type: rest
    namespace: platform-compliance-exports-rest
    port: 8080
    description: REST adapter for RingCentral API — Compliance Exports. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/team-messaging/v1/data-export
      name: team-messaging-v1-data-export
      description: REST surface for team-messaging-v1-data-export.
      operations:
      - method: GET
        name: listdataexporttasksnew
        description: List Data Export Tasks
        call: platform-compliance-exports.listdataexporttasksnew
        with:
          status: rest.status
          page: rest.page
          perPage: rest.perPage
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createdataexporttasknew
        description: Create Data Export Task
        call: platform-compliance-exports.createdataexporttasknew
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/team-messaging/v1/data-export/{taskid}
      name: team-messaging-v1-data-export-taskid
      description: REST surface for team-messaging-v1-data-export-taskId.
      operations:
      - method: GET
        name: readdataexporttasknew
        description: Get Data Export Task
        call: platform-compliance-exports.readdataexporttasknew
        with:
          taskId: rest.taskId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-compliance-exports-mcp
    port: 9090
    transport: http
    description: MCP adapter for RingCentral API — Compliance Exports. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-data-export-tasks
      description: List Data Export Tasks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-compliance-exports.listdataexporttasksnew
      with:
        status: tools.status
        page: tools.page
        perPage: tools.perPage
      outputParameters:
      - type: object
        mapping: $.
    - name: create-data-export-task
      description: Create Data Export Task
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-compliance-exports.createdataexporttasknew
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-data-export-task
      description: Get Data Export Task
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-compliance-exports.readdataexporttasknew
      with:
        taskId: tools.taskId
      outputParameters:
      - type: object
        mapping: $.