Telnyx · Capability

Telnyx API — Authentication Providers

Telnyx API — Authentication Providers. 5 operations. Lead operation: List all SSO authentication providers. Self-contained Naftiko capability covering one Telnyx business surface.

Run with Naftiko TelnyxAuthentication Providers

What You Can Do

GET
Findauthenticationproviders — List all SSO authentication providers
/v1/authentication-providers
POST
Createauthenticationprovider — Creates an authentication provider
/v1/authentication-providers
DELETE
Deleteauthenticationprovider — Deletes an authentication provider
/v1/authentication-providers/{id}
GET
Getauthenticationprovider — Retrieve an authentication provider
/v1/authentication-providers/{id}
PATCH
Updateauthenticationprovider — Update an authentication provider
/v1/authentication-providers/{id}

MCP Tools

list-all-sso-authentication-providers

List all SSO authentication providers

read-only idempotent
creates-authentication-provider

Creates an authentication provider

deletes-authentication-provider

Deletes an authentication provider

idempotent
retrieve-authentication-provider

Retrieve an authentication provider

read-only idempotent
update-authentication-provider

Update an authentication provider

idempotent

Capability Spec

telnyx-authentication-providers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Telnyx API — Authentication Providers
  description: 'Telnyx API — Authentication Providers. 5 operations. Lead operation: List all SSO authentication providers.
    Self-contained Naftiko capability covering one Telnyx business surface.'
  tags:
  - Telnyx
  - Authentication Providers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TELNYX_API_KEY: TELNYX_API_KEY
capability:
  consumes:
  - type: http
    namespace: telnyx-authentication-providers
    baseUri: https://api.telnyx.com/v2
    description: Telnyx API — Authentication Providers business capability. Self-contained, no shared references.
    resources:
    - name: authentication_providers
      path: /authentication_providers
      operations:
      - name: findauthenticationproviders
        method: GET
        description: List all SSO authentication providers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sort
          in: query
          type: string
          description: Specifies the sort order for results. By default sorting direction is ascending. To have the results
            sorted in descending order add the <code>-</code> prefix.<b
        - name: page
          in: query
          type: object
          description: 'Consolidated page parameter (deepObject style). Originally: page[number], page[size]'
      - name: createauthenticationprovider
        method: POST
        description: Creates an authentication provider
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: authentication_providers-id
      path: /authentication_providers/{id}
      operations:
      - name: deleteauthenticationprovider
        method: DELETE
        description: Deletes an authentication provider
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: authentication provider ID
          required: true
      - name: getauthenticationprovider
        method: GET
        description: Retrieve an authentication provider
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: authentication provider ID
          required: true
      - name: updateauthenticationprovider
        method: PATCH
        description: Update an authentication provider
        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
    authentication:
      type: bearer
      token: '{{env.TELNYX_API_KEY}}'
  exposes:
  - type: rest
    namespace: telnyx-authentication-providers-rest
    port: 8080
    description: REST adapter for Telnyx API — Authentication Providers. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/authentication-providers
      name: authentication-providers
      description: REST surface for authentication_providers.
      operations:
      - method: GET
        name: findauthenticationproviders
        description: List all SSO authentication providers
        call: telnyx-authentication-providers.findauthenticationproviders
        with:
          sort: rest.sort
          page: rest.page
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createauthenticationprovider
        description: Creates an authentication provider
        call: telnyx-authentication-providers.createauthenticationprovider
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/authentication-providers/{id}
      name: authentication-providers-id
      description: REST surface for authentication_providers-id.
      operations:
      - method: DELETE
        name: deleteauthenticationprovider
        description: Deletes an authentication provider
        call: telnyx-authentication-providers.deleteauthenticationprovider
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getauthenticationprovider
        description: Retrieve an authentication provider
        call: telnyx-authentication-providers.getauthenticationprovider
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateauthenticationprovider
        description: Update an authentication provider
        call: telnyx-authentication-providers.updateauthenticationprovider
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: telnyx-authentication-providers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Telnyx API — Authentication Providers. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-all-sso-authentication-providers
      description: List all SSO authentication providers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-authentication-providers.findauthenticationproviders
      with:
        sort: tools.sort
        page: tools.page
      outputParameters:
      - type: object
        mapping: $.
    - name: creates-authentication-provider
      description: Creates an authentication provider
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: telnyx-authentication-providers.createauthenticationprovider
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: deletes-authentication-provider
      description: Deletes an authentication provider
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: telnyx-authentication-providers.deleteauthenticationprovider
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-authentication-provider
      description: Retrieve an authentication provider
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-authentication-providers.getauthenticationprovider
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-authentication-provider
      description: Update an authentication provider
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: telnyx-authentication-providers.updateauthenticationprovider
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.