AT&T · Capability

AT&T Enterprise Connectivity APIs

Enterprise-grade APIs for AT&T wireline business services including service qualification, quoting, ordering, and provisioning. The Alliance API suite supports automated ordering of AVPN, IPBB, ATTPhone, ASE, and AT&T Internet Air for Business services.

Run with Naftiko AtandtAPI

What You Can Do

POST
Checkservicequalification — Check AT&T Service Qualification
/alliance/serviceQualification/v1/check
POST
Createproductorder — Create AT&T Enterprise Product Order
/alliance/productOrder/v1
GET
Listproductorders — List AT&T Enterprise Product Orders
/alliance/productOrder/v1
GET
Getproductorder — Get AT&T Enterprise Product Order
/alliance/productOrder/v1/{orderId}

MCP Tools

checkservicequalification

Check AT&T Service Qualification

createproductorder

Create AT&T Enterprise Product Order

listproductorders

List AT&T Enterprise Product Orders

read-only idempotent
getproductorder

Get AT&T Enterprise Product Order

read-only idempotent

Capability Spec

atandt-capability.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: AT&T Enterprise Connectivity APIs
  description: Enterprise-grade APIs for AT&T wireline business services including service qualification, quoting, ordering,
    and provisioning. The Alliance API suite supports automated ordering of AVPN, IPBB, ATTPhone, ASE, and AT&T Internet Air
    for Business services.
  tags:
  - Atandt
  - API
  created: '2026-05-06'
  modified: '2026-05-06'
capability:
  consumes:
  - type: http
    namespace: atandt
    baseUri: https://devex-web.att.com
    description: AT&T Enterprise Connectivity APIs HTTP API.
    authentication:
      type: bearer
      token: '{{ATANDT_TOKEN}}'
    resources:
    - name: alliance-servicequalification-v1-check
      path: /alliance/serviceQualification/v1/check
      operations:
      - name: checkservicequalification
        method: POST
        description: Check AT&T Service Qualification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: alliance-productorder-v1
      path: /alliance/productOrder/v1
      operations:
      - name: createproductorder
        method: POST
        description: Create AT&T Enterprise Product Order
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: listproductorders
        method: GET
        description: List AT&T Enterprise Product Orders
        inputParameters:
        - name: state
          in: query
          type: string
          description: Filter by order state
        - name: requestedStartDate.gt
          in: query
          type: string
          description: Filter orders with requested start date after this date
        - name: externalId
          in: query
          type: string
          description: Filter by external order ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: alliance-productorder-v1-orderid
      path: /alliance/productOrder/v1/{orderId}
      operations:
      - name: getproductorder
        method: GET
        description: Get AT&T Enterprise Product Order
        inputParameters:
        - name: orderId
          in: path
          type: string
          required: true
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    port: 8080
    namespace: atandt-rest
    description: REST adapter for AT&T Enterprise Connectivity APIs.
    resources:
    - path: /alliance/serviceQualification/v1/check
      name: checkservicequalification
      operations:
      - method: POST
        name: checkservicequalification
        description: Check AT&T Service Qualification
        call: atandt.checkservicequalification
        outputParameters:
        - type: object
          mapping: $.
    - path: /alliance/productOrder/v1
      name: createproductorder
      operations:
      - method: POST
        name: createproductorder
        description: Create AT&T Enterprise Product Order
        call: atandt.createproductorder
        outputParameters:
        - type: object
          mapping: $.
    - path: /alliance/productOrder/v1
      name: listproductorders
      operations:
      - method: GET
        name: listproductorders
        description: List AT&T Enterprise Product Orders
        call: atandt.listproductorders
        outputParameters:
        - type: object
          mapping: $.
    - path: /alliance/productOrder/v1/{orderId}
      name: getproductorder
      operations:
      - method: GET
        name: getproductorder
        description: Get AT&T Enterprise Product Order
        call: atandt.getproductorder
        with:
          orderId: rest.orderId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    port: 9090
    namespace: atandt-mcp
    transport: http
    description: MCP adapter for AT&T Enterprise Connectivity APIs for AI agent use.
    tools:
    - name: checkservicequalification
      description: Check AT&T Service Qualification
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: atandt.checkservicequalification
      outputParameters:
      - type: object
        mapping: $.
    - name: createproductorder
      description: Create AT&T Enterprise Product Order
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: atandt.createproductorder
      outputParameters:
      - type: object
        mapping: $.
    - name: listproductorders
      description: List AT&T Enterprise Product Orders
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: atandt.listproductorders
      with:
        state: tools.state
        requestedStartDate.gt: tools.requestedStartDate.gt
        externalId: tools.externalId
      inputParameters:
      - name: state
        type: string
        description: Filter by order state
      - name: requestedStartDate.gt
        type: string
        description: Filter orders with requested start date after this date
      - name: externalId
        type: string
        description: Filter by external order ID
      outputParameters:
      - type: object
        mapping: $.
    - name: getproductorder
      description: Get AT&T Enterprise Product Order
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: atandt.getproductorder
      with:
        orderId: tools.orderId
      inputParameters:
      - name: orderId
        type: string
        description: orderId
        required: true
      outputParameters:
      - type: object
        mapping: $.
binds:
- namespace: env
  keys:
    ATANDT_TOKEN: ATANDT_TOKEN