inventory/purchase_order/get
POST
/inventory/purchase_order/getThis returns the list of purchase orders 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 purchase order ID to search for specifically.
Filter the list of purchase orders modified after the spcified date.
Filter the list of purchase orders to include deleted records.
Page number of the results.
The key for the ordering of the results. Accepts "purchase_order_id", "user", "location", "supplier", "total", "date_estimated_arrival", "date_received", "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",
"purchase_order_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 purchase orders available.
The purchase order ID.
The user ID last modified the purchase order.
The location ID.
The supplier ID.
The purchase order total.
The comment for the purchase order.
The currency code.
The currency value.
The date estimated arrival.
The date received.
The date time the purchase order was created.
The date time the purchase order was last modified.
The list of items for the purchase order.
Indicates if the purchase order has been deleted. Only returned if filter_deleted is "1".
{
"error": [
"string"
],
"total": 0,
"purchase_orders": [
{
"purchase_order_id": 0,
"user_id": 0,
"location_id": 0,
"supplier_id": 0,
"total": 0,
"comment": "string",
"currency": "string",
"currency_value": 0,
"date_estimated_arrival": "string",
"date_received": "string",
"date_added": "string",
"date_modified": "string",
"items": [
{
"item_id": 0,
"name": "string",
"quantity": 0,
"cost": 0
}
],
"deleted": true
}
]
}