Telnyx · Capability

Telnyx API — Inexplicit Number Orders

Telnyx API — Inexplicit Number Orders. 3 operations. Lead operation: List inexplicit number orders. Self-contained Naftiko capability covering one Telnyx business surface.

Run with Naftiko TelnyxInexplicit Number Orders

What You Can Do

GET
Listinexplicitnumberorders — List inexplicit number orders
/v1/inexplicit-number-orders
POST
Createinexplicitnumberorder — Create an inexplicit number order
/v1/inexplicit-number-orders
GET
Retrieveinexplicitnumberorder — Retrieve an inexplicit number order
/v1/inexplicit-number-orders/{id}

MCP Tools

list-inexplicit-number-orders

List inexplicit number orders

read-only idempotent
create-inexplicit-number-order

Create an inexplicit number order

retrieve-inexplicit-number-order

Retrieve an inexplicit number order

read-only idempotent

Capability Spec

telnyx-inexplicit-number-orders.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Telnyx API — Inexplicit Number Orders
  description: 'Telnyx API — Inexplicit Number Orders. 3 operations. Lead operation: List inexplicit number orders. Self-contained
    Naftiko capability covering one Telnyx business surface.'
  tags:
  - Telnyx
  - Inexplicit Number Orders
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TELNYX_API_KEY: TELNYX_API_KEY
capability:
  consumes:
  - type: http
    namespace: telnyx-inexplicit-number-orders
    baseUri: https://api.telnyx.com/v2
    description: Telnyx API — Inexplicit Number Orders business capability. Self-contained, no shared references.
    resources:
    - name: inexplicit_number_orders
      path: /inexplicit_number_orders
      operations:
      - name: listinexplicitnumberorders
        method: GET
        description: List inexplicit number orders
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page_number
          in: query
          type: integer
          description: The page number to load
        - name: page_size
          in: query
          type: integer
          description: The size of the page
      - name: createinexplicitnumberorder
        method: POST
        description: Create an inexplicit number order
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: inexplicit_number_orders-id
      path: /inexplicit_number_orders/{id}
      operations:
      - name: retrieveinexplicitnumberorder
        method: GET
        description: Retrieve an inexplicit number order
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifies the inexplicit number order
          required: true
    authentication:
      type: bearer
      token: '{{env.TELNYX_API_KEY}}'
  exposes:
  - type: rest
    namespace: telnyx-inexplicit-number-orders-rest
    port: 8080
    description: REST adapter for Telnyx API — Inexplicit Number Orders. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/inexplicit-number-orders
      name: inexplicit-number-orders
      description: REST surface for inexplicit_number_orders.
      operations:
      - method: GET
        name: listinexplicitnumberorders
        description: List inexplicit number orders
        call: telnyx-inexplicit-number-orders.listinexplicitnumberorders
        with:
          page_number: rest.page_number
          page_size: rest.page_size
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createinexplicitnumberorder
        description: Create an inexplicit number order
        call: telnyx-inexplicit-number-orders.createinexplicitnumberorder
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/inexplicit-number-orders/{id}
      name: inexplicit-number-orders-id
      description: REST surface for inexplicit_number_orders-id.
      operations:
      - method: GET
        name: retrieveinexplicitnumberorder
        description: Retrieve an inexplicit number order
        call: telnyx-inexplicit-number-orders.retrieveinexplicitnumberorder
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: telnyx-inexplicit-number-orders-mcp
    port: 9090
    transport: http
    description: MCP adapter for Telnyx API — Inexplicit Number Orders. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-inexplicit-number-orders
      description: List inexplicit number orders
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-inexplicit-number-orders.listinexplicitnumberorders
      with:
        page_number: tools.page_number
        page_size: tools.page_size
      outputParameters:
      - type: object
        mapping: $.
    - name: create-inexplicit-number-order
      description: Create an inexplicit number order
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: telnyx-inexplicit-number-orders.createinexplicitnumberorder
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-inexplicit-number-order
      description: Retrieve an inexplicit number order
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-inexplicit-number-orders.retrieveinexplicitnumberorder
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.