inventory/reservation/get
POST
/inventory/reservation/getThis returns the list of item reservations available in the Equotix One account.
Request
The domain you are assigned to authenticate your Equotix One account.
The email address assigned to the user account in your Equotix One.
The unix timestamp used to sign this API request.
The calculated signature for this API request.
The item reservation ID to search for specifically.
Filter the list of item reservations modified after the spcified date.
Filter the list of item reservations to include deleted records.
Page number of the results.
The key for the ordering of the results. Accepts "item_reservation_id", "date_added", "date_modified".
The direction for the ordering of the results. Accepts "ASC", "DESC"
The number of results per page. Accepts 1 to 100.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"item_reservation_id": 0,
"filter_date_modified": "string",
"filter_deleted": true,
"page": 0,
"sort": "string",
"order": "string",
"limit": 0
}
Responses
Returns only if there is an error.
The total number of results available.
The list of item reservations available.
The item reservation ID.
The imported order ID from channels.
The user ID last modified the item reservation.
The channel ID related to the imported order ID..
The location ID.
The comment for the item reservation.
The date time the item reservation was created.
The date time the item reservation was last modified.
The list of items for the item reservation.
Indicates if the item reservation has been deleted. Only returned if filter_deleted is "1".
{
"error": [
"string"
],
"total": 0,
"reservations": [
{
"item_reservation_id": 0,
"imported_order_id": "string",
"user_id": 0,
"channel_id": 0,
"location_id": 0,
"comment": "string",
"date_added": "string",
"date_modified": "string",
"items": [
{
"item_id": 0,
"name": "string",
"quantity": 0
}
],
"deleted": true
}
]
}