Order Submission

Version 1.0.2
download iconDownload spec

Endpoint

POST
https://partner.att.com/omni-svcs/v1/carts/{cartId}/express-submit

Submits a fully-formed fiber order to AT&T's systems in a single call. The cartId is used to retrieve appointment data and terms data for technician installation. This endpoint accepts payment methods, enrollment preferences, terms acceptance, fulfillment options (for address changes), and installation appointment details. On success, returns immediate acknowledgment with the initial order status and customer order ID.

arrowRequest

Express order submission request containing payment methods, enrollment preferences, terms acceptance, fulfillment options, and installation appointment details.

Path Parameters

    Header Parameters

      Body Parameters

      Responses

      Successful order submission response containing order ID, customer order ID, submission date, state, and order summary access token.

      arrowBody

      application/json

      REQUEST

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      17
      18
      19
      20
      21
      22
      23
      24
      25
      26
      27
      28
      29
      30
      31
      32
      33
      34
      35
      36
      37
      38
      39
      40
      41
      42
      43
      44
      45
      46
      47
      48
      49
      50
      51
      52
      53
      54
      55
      56
      57
      58
      59
      60
      61
      62
      63
      64
      65
      66
      67
      68
      69
      70
      71
      72
      73
      74
      75
      76
      77
      78
      79
      80
      81
      82
      83
      84
      85
      86
      87
      88
      89
      90
      91
      92
      93
      94
      95
      96
      97
      98
      99
      100
      101
      102
      103
      104
      105
      106
      107
      108
      109
      110
      111
      112
      113
      114
      115
      curl --request POST \
           --url https://partner.att.com/omni-svcs/v1/carts/177a1210-f019-11f0-a4f6-dd46c526bb51/express-submit \
           --header 'accept: application/json' \
           --header 'content-type: application/json' \
           --data '
      {
        "paymentMethods": [
          {
            "paymentMethod": {
              "type": "CARD",
              "card": {
                "verified": false,
                "zipCode": "98011",
                "merchantId": "HARDROCK-CON",
                "overideAvs": false,
                "verifyCardIndicator": true,
                "securityCode": "999",
                "billingAddress": {
                  "zipCode": "98011"
                },
                "trueCreditCardIndicator": false,
                "cardNumber": "6505391444547228",
                "expireMonth": "12",
                "expireYear": "2025",
                "cardHolderName": "TFname TLname"
              }
            },
            "paySource": {
              "sourceSystem": "RTB",
              "sourceLocation": "XX",
              "sourceUser": "IDP"
            },
            "profileName": "TFname-card-7228",
            "paymentProfileId": "123456789",
            "encPaymentMethod": "EncryptedPaymentMethodString",
            "_paymentMethodRef": "paymentMethodRef1",
            "tncId": 610,
            "storeTermsConditionConsent": true,
            "customerAgreement": true
          }
        ],
        "enrollment": {
          "autoPay": "string",
          "paperLess": "string",
          "paymentMethodRef": "string"
        },
        "oneTimePayment": {
          "paymentMethodRef": "string"
        },
        "billing": {
          "autoPay": "string",
          "paperLess": "string",
          "paymentMethodRef": "string"
        },
        "fulfillment": {
          "selectedOptions": [
            {
              "productOrderItemId": "string",
              "productOffering": {
                "id": "string",
                "name": "string",
                "productOfferingType": "string"
              },
              "product": {
                "place": [
                  {
                    "id": "string",
                    "name": "string",
                    "role": "string"
                  }
                ]
              }
            }
          ]
        },
        "installationAppointment": {
          "installationDayContact": {
            "givenName": "string",
            "familyName": "string",
            "contactMedium": [
              {
                "mediumType": "string",
                "characteristic": {
                  "contactType": "string",
                  "phoneNumber": "string"
                },
                "preferred": false
              }
            ]
          },
          "selected": {
            "id": "string",
            "@type": "string",
            "note": [
              {
                "id": "string",
                "author": "string",
                "date": "2026-03-10T19:56:37.678Z",
                "text": "string",
                "@baseType": "string",
                "@schemaLocation": "string",
                "@type": "string"
              }
            ],
            "relatedEntity": [
              {
                "@referredType": "string",
                "id": "string",
                "role": "string"
              }
            ]
          }
        }
      }
      '

      RESPONSE

      1
      2
      3
      4
      5
      6
      7
      {
        "id": "177a1210-f019-11f0-a4f6-dd46c526bb51",
        "customerOrderId": "25-76826709685300",
        "state": "Submitted",
        "submissionDate": "2024-10-05T14:48:00.000Z",
        "orderSummaryAccessToken": "e2456215530fa8f6ddd1254a75482d08976559191"
      }