GET
/
backpre-order
/
backorderpreorder-reserve
/
{identifier}
curl --request GET \
  --url https://prod01.oms.fabric.inc/api/v2/backpre-order/backorderpreorder-reserve/{identifier} \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "1",
    "orderNumber": "order_123",
    "sku": "sku_123",
    "lineItemId": "0",
    "itemId": "123",
    "type": "BACKORDER",
    "cartId": "b03b72dc-78d8-4ea4-90fc-2fe6a1fe6569",
    "orderDate": "2022-04-12T09:30:31.198Z",
    "backOrderedQuantity": 5,
    "toReleaseQuantity": 0,
    "locationNum": 23,
    "channelId": "channel_12",
    "vendorId": "vendor_123",
    "consentToDelay": "true",
    "consentDate": "2022-07-12T09:30:31.198Z",
    "lastNotificationDate": "2022-06-12T09:30:31.198Z",
    "toNotify": "false",
    "orderStatusCode": "Created",
    "lineItemStatus": "CANCELLED",
    "paymentStatus": "OK"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

identifier
string
required

orderNumber

Response

200
application/json
backOrderPreOrderReservation list returned
orderNumber
string
required
Example:

"order_123"

sku
string
required
Example:

"sku_123"

lineItemId
string
required
Example:

"0"

type
string
required
Example:

"BACKORDER"

orderDate
string
required
Example:

"2022-04-12T09:30:31.198Z"

backOrderedQuantity
integer
required
Example:

5

locationNum
integer
required
Example:

23

channelId
string
required
Example:

"channel_12"

orderStatusCode
string
required
Example:

"Created"

id
string
Example:

"1"

itemId
string
Example:

"123"

cartId
string
Example:

"b03b72dc-78d8-4ea4-90fc-2fe6a1fe6569"

toReleaseQuantity
integer
Example:

0

vendorId
string
Example:

"vendor_123"

Example:

"true"

Example:

"2022-07-12T09:30:31.198Z"

lastNotificationDate
string
Example:

"2022-06-12T09:30:31.198Z"

toNotify
string
Example:

"false"

lineItemStatus
string
Example:

"CANCELLED"

paymentStatus
string
Example:

"OK"