AT&T Order Management API

Track and manage existing orders

Operations 2

GET /alliance/productOrder/v1 List AT&T Enterprise Product Orders #
GET /alliance/productOrder/v1/{orderId} Get AT&T Enterprise Product Order #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/att-order-management-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

att-order-management-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AT&T Enterprise Connectivity Order Management API
  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.
  version: 1.0.0
  contact:
    name: AT&T Alliance Developer Portal
    url: https://devex-web.att.com/alliance
  termsOfService: https://www.att.com/gen/general?pid=11561
servers:
- url: https://devex-web.att.com
  description: AT&T Enterprise API Server
security:
- oauth2: []
tags:
- name: Order Management
  description: Track and manage existing orders
paths:
  /alliance/productOrder/v1:
    get:
      operationId: listProductOrders
      summary: List AT&T Enterprise Product Orders
      description: Retrieve a list of product orders with optional filtering by state, date range, or external ID.
      tags:
      - Order Management
      parameters:
      - name: state
        in: query
        schema:
          type: string
          enum:
          - acknowledged
          - inProgress
          - pending
          - held
          - assessingCancellation
          - pendingCancellation
          - cancelled
          - completed
          - failed
          - partial
        description: Filter by order state
      - name: requestedStartDate.gt
        in: query
        schema:
          type: string
          format: date
        description: Filter orders with requested start date after this date
      - name: externalId
        in: query
        schema:
          type: string
        description: Filter by external order ID
      responses:
        '200':
          description: List of product orders
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProductOrder'
              examples:
                orders:
                  summary: Active Orders
                  value:
                  - id: ord_xyz789
                    externalId: ext_order_001
                    state: inProgress
                    orderDate: '2026-04-19T10:00:00Z'
  /alliance/productOrder/v1/{orderId}:
    get:
      operationId: getProductOrder
      summary: Get AT&T Enterprise Product Order
      description: Retrieve the current status and details of a specific product order.
      tags:
      - Order Management
      parameters:
      - name: orderId
        in: path
        required: true
        schema:
          type: string
        examples:
          example:
            value: ord_xyz789
      responses:
        '200':
          description: Product order details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductOrder'
              examples:
                inProgress:
                  summary: Order In Progress
                  value:
                    id: ord_xyz789
                    externalId: ext_order_001
                    state: inProgress
                    orderDate: '2026-04-19T10:00:00Z'
                    completionDate: null
        '404':
          description: Order not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ProductOrder:
      type: object
      properties:
        id:
          type: string
          description: AT&T order identifier
        externalId:
          type: string
          description: Customer external reference
        state:
          type: string
          enum:
          - acknowledged
          - inProgress
          - pending
          - held
          - assessingCancellation
          - pendingCancellation
          - cancelled
          - completed
          - failed
          - partial
          description: Current order state
        orderDate:
          type: string
          format: date-time
          description: Order submission timestamp
        completionDate:
          type:
          - string
          - 'null'
          format: date-time
          description: Order completion timestamp
    ErrorResponse:
      type: object
      properties:
        code:
          type: string
          description: Error code
        reason:
          type: string
          description: Error reason
        message:
          type: string
          description: Detailed error message
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://devex-web.att.com/oauth/token
          scopes:
            enterprise: Access AT&T enterprise connectivity APIs