Inquire fulfillment options.

Version 1.0.0
download iconDownload spec

Endpoint

POST
https://partner-omni-apis.att.com/omni-svcs/v1/fulfillment-options

Retreive eligible fulfillment options.

arrowRequest

Request body for the fulfillment selection

Body Parameters

Responses

Response body for fulfillment selection

arrowBody

application/json

REQUEST

1
2
3
4
5
6
7
8
9
10
curl --request POST \
     --url https://partner-omni-apis.att.com/omni-svcs/v1/fulfillment-options \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "orderId": "10-689838051878453",
  "placeid": "fdcdd712-98a6-45b0-a8ee-c9b904de2208_1"
}
'

RESPONSE

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
{
  "selectedOptions": [
    {
      "options": [
        {
          "productOrderItemId": "string",
          "fulfillmentOptions": [
            {
              "dates": {
                "shipmentDates": {
                  "dateFrom": "2026-01-26",
                  "dateTo": "2026-01-26"
                },
                "deliveryDates": {
                  "dateFrom": "2026-01-26",
                  "dateTo": "2026-01-26"
                }
              },
              "productOffering": {
                "id": "string",
                "name": "string",
                "productOfferingType": "string"
              },
              "finalPrice": {
                "dutyFreeAmount": {
                  "unit": "string",
                  "value": 0
                }
              },
              "product": {
                "place": [
                  {
                    "id": "string",
                    "role": "string"
                  }
                ]
              }
            }
          ]
        }
      ]
    }
  ],
  "validation": {
    "status": "string",
    "readyToSubmit": false,
    "validationMessage": [
      {
        "text": "string",
        "type": "string",
        "parameter": [
          {
            "name": "string",
            "value": "string"
          }
        ]
      }
    ],
    "configuration": [
      {
        "type": "string",
        "status": "string",
        "required": false,
        "postOrderConfigurable": false
      }
    ]
  }
}