Telnyx · Capability

Telnyx API — Credential Connections

Telnyx API — Credential Connections. 6 operations. Lead operation: List credential connections. Self-contained Naftiko capability covering one Telnyx business surface.

Run with Naftiko TelnyxCredential Connections

What You Can Do

GET
Listcredentialconnections — List credential connections
/v1/credential-connections
POST
Createcredentialconnection — Create a credential connection
/v1/credential-connections
DELETE
Deletecredentialconnection — Delete a credential connection
/v1/credential-connections/{id}
GET
Retrievecredentialconnection — Retrieve a credential connection
/v1/credential-connections/{id}
PATCH
Updatecredentialconnection — Update a credential connection
/v1/credential-connections/{id}
POST
Checkregistrationstatus — Check a Credential Connection Registration Status
/v1/credential-connections/{id}/actions/check-registration-status

MCP Tools

list-credential-connections

List credential connections

read-only idempotent
create-credential-connection

Create a credential connection

delete-credential-connection

Delete a credential connection

idempotent
retrieve-credential-connection

Retrieve a credential connection

read-only idempotent
update-credential-connection

Update a credential connection

idempotent
check-credential-connection-registration-status

Check a Credential Connection Registration Status

read-only

Capability Spec

telnyx-credential-connections.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Telnyx API — Credential Connections
  description: 'Telnyx API — Credential Connections. 6 operations. Lead operation: List credential connections. Self-contained
    Naftiko capability covering one Telnyx business surface.'
  tags:
  - Telnyx
  - Credential Connections
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TELNYX_API_KEY: TELNYX_API_KEY
capability:
  consumes:
  - type: http
    namespace: telnyx-credential-connections
    baseUri: https://api.telnyx.com/v2
    description: Telnyx API — Credential Connections business capability. Self-contained, no shared references.
    resources:
    - name: credential_connections
      path: /credential_connections
      operations:
      - name: listcredentialconnections
        method: GET
        description: List credential connections
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcredentialconnection
        method: POST
        description: Create a credential connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: credential_connections-id
      path: /credential_connections/{id}
      operations:
      - name: deletecredentialconnection
        method: DELETE
        description: Delete a credential connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifies the resource.
          required: true
      - name: retrievecredentialconnection
        method: GET
        description: Retrieve a credential connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifies the resource.
          required: true
      - name: updatecredentialconnection
        method: PATCH
        description: Update a credential connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifies the resource.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: credential_connections-id-actions-check_registration_status
      path: /credential_connections/{id}/actions/check_registration_status
      operations:
      - name: checkregistrationstatus
        method: POST
        description: Check a Credential Connection Registration Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifies the resource.
          required: true
    authentication:
      type: bearer
      token: '{{env.TELNYX_API_KEY}}'
  exposes:
  - type: rest
    namespace: telnyx-credential-connections-rest
    port: 8080
    description: REST adapter for Telnyx API — Credential Connections. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/credential-connections
      name: credential-connections
      description: REST surface for credential_connections.
      operations:
      - method: GET
        name: listcredentialconnections
        description: List credential connections
        call: telnyx-credential-connections.listcredentialconnections
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcredentialconnection
        description: Create a credential connection
        call: telnyx-credential-connections.createcredentialconnection
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/credential-connections/{id}
      name: credential-connections-id
      description: REST surface for credential_connections-id.
      operations:
      - method: DELETE
        name: deletecredentialconnection
        description: Delete a credential connection
        call: telnyx-credential-connections.deletecredentialconnection
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: retrievecredentialconnection
        description: Retrieve a credential connection
        call: telnyx-credential-connections.retrievecredentialconnection
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatecredentialconnection
        description: Update a credential connection
        call: telnyx-credential-connections.updatecredentialconnection
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/credential-connections/{id}/actions/check-registration-status
      name: credential-connections-id-actions-check-registration-status
      description: REST surface for credential_connections-id-actions-check_registration_status.
      operations:
      - method: POST
        name: checkregistrationstatus
        description: Check a Credential Connection Registration Status
        call: telnyx-credential-connections.checkregistrationstatus
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: telnyx-credential-connections-mcp
    port: 9090
    transport: http
    description: MCP adapter for Telnyx API — Credential Connections. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-credential-connections
      description: List credential connections
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-credential-connections.listcredentialconnections
      outputParameters:
      - type: object
        mapping: $.
    - name: create-credential-connection
      description: Create a credential connection
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: telnyx-credential-connections.createcredentialconnection
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-credential-connection
      description: Delete a credential connection
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: telnyx-credential-connections.deletecredentialconnection
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-credential-connection
      description: Retrieve a credential connection
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-credential-connections.retrievecredentialconnection
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-credential-connection
      description: Update a credential connection
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: telnyx-credential-connections.updatecredentialconnection
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: check-credential-connection-registration-status
      description: Check a Credential Connection Registration Status
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: telnyx-credential-connections.checkregistrationstatus
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.