Telnyx · Capability

Telnyx API — Organization Users

Telnyx API — Organization Users. 4 operations. Lead operation: List organization users. Self-contained Naftiko capability covering one Telnyx business surface.

Run with Naftiko TelnyxOrganization Users

What You Can Do

GET
Listorganizationusers — List organization users
/v1/organizations/users
GET
Getorganizationusersgroupsreport — Get organization users groups report
/v1/organizations/users/users-groups-report
GET
Getorganizationuser — Get organization user
/v1/organizations/users/{id}
POST
Deleteorganizationuser — Delete organization user
/v1/organizations/users/{id}/actions/remove

MCP Tools

list-organization-users

List organization users

read-only idempotent
get-organization-users-groups-report

Get organization users groups report

read-only idempotent
get-organization-user

Get organization user

read-only idempotent
delete-organization-user

Delete organization user

Capability Spec

telnyx-organization-users.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Telnyx API — Organization Users
  description: 'Telnyx API — Organization Users. 4 operations. Lead operation: List organization users. Self-contained Naftiko
    capability covering one Telnyx business surface.'
  tags:
  - Telnyx
  - Organization Users
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TELNYX_API_KEY: TELNYX_API_KEY
capability:
  consumes:
  - type: http
    namespace: telnyx-organization-users
    baseUri: https://api.telnyx.com/v2
    description: Telnyx API — Organization Users business capability. Self-contained, no shared references.
    resources:
    - name: organizations-users
      path: /organizations/users
      operations:
      - name: listorganizationusers
        method: GET
        description: List organization users
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: organizations-users-users_groups_report
      path: /organizations/users/users_groups_report
      operations:
      - name: getorganizationusersgroupsreport
        method: GET
        description: Get organization users groups report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Accept
          in: header
          type: string
          description: Specify the response format. Use 'application/json' for JSON format or 'text/csv' for CSV format.
    - name: organizations-users-id
      path: /organizations/users/{id}
      operations:
      - name: getorganizationuser
        method: GET
        description: Get organization user
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Organization User ID
          required: true
    - name: organizations-users-id-actions-remove
      path: /organizations/users/{id}/actions/remove
      operations:
      - name: deleteorganizationuser
        method: POST
        description: Delete organization user
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Organization User ID
          required: true
    authentication:
      type: bearer
      token: '{{env.TELNYX_API_KEY}}'
  exposes:
  - type: rest
    namespace: telnyx-organization-users-rest
    port: 8080
    description: REST adapter for Telnyx API — Organization Users. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/organizations/users
      name: organizations-users
      description: REST surface for organizations-users.
      operations:
      - method: GET
        name: listorganizationusers
        description: List organization users
        call: telnyx-organization-users.listorganizationusers
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organizations/users/users-groups-report
      name: organizations-users-users-groups-report
      description: REST surface for organizations-users-users_groups_report.
      operations:
      - method: GET
        name: getorganizationusersgroupsreport
        description: Get organization users groups report
        call: telnyx-organization-users.getorganizationusersgroupsreport
        with:
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organizations/users/{id}
      name: organizations-users-id
      description: REST surface for organizations-users-id.
      operations:
      - method: GET
        name: getorganizationuser
        description: Get organization user
        call: telnyx-organization-users.getorganizationuser
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organizations/users/{id}/actions/remove
      name: organizations-users-id-actions-remove
      description: REST surface for organizations-users-id-actions-remove.
      operations:
      - method: POST
        name: deleteorganizationuser
        description: Delete organization user
        call: telnyx-organization-users.deleteorganizationuser
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: telnyx-organization-users-mcp
    port: 9090
    transport: http
    description: MCP adapter for Telnyx API — Organization Users. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-organization-users
      description: List organization users
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-organization-users.listorganizationusers
      outputParameters:
      - type: object
        mapping: $.
    - name: get-organization-users-groups-report
      description: Get organization users groups report
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-organization-users.getorganizationusersgroupsreport
      with:
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: get-organization-user
      description: Get organization user
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-organization-users.getorganizationuser
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-organization-user
      description: Delete organization user
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: telnyx-organization-users.deleteorganizationuser
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.