Shipping Enrichment (AIAB)

Version v1
download iconDownload spec

Endpoint

POST
https://order-enrichment-eapi.gw.cloud.att.com/api/v1/order-enrichment/shipping/aiab

The purpose of this API endpoint is to gather additional information about shipping.

arrowRequest

Header Parameters

            Body Parameters

            Responses

            Success

            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
            curl --request POST \
                 --url https://order-enrichment-eapi.gw.cloud.att.com/api/v1/order-enrichment/shipping/aiab \
                 --header 'accept: application/json' \
                 --header 'content-type: application/json' \
                 --data '
            {
              "orderId": "string",
              "subOrderId": "string",
              "isCustomerAsSubscriber": false,
              "contacts": {
                "contactDetails": [
                  {
                    "type": "shipping",
                    "firstName": "string",
                    "lastName": "string",
                    "email": "string",
                    "country": "string",
                    "zipCode": "string",
                    "street": "string",
                    "city": "string",
                    "state": "string",
                    "phone": "string"
                  }
                ]
              }
            }
            '

            RESPONSE

            1
            2
            3
            4
            5
            6
            {
              "orderId": "string",
              "subOrderId": "string",
              "status": "string",
              "statusMessage": "string"
            }