This returns the list of order histories for an order available in the Equotix One account.
Request
Body Params application/json
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 order ID to retrieve its histories.
Page number of the results.
The number of results per page. Accepts 1 to 100.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"order_id": 0,
"page": 0,
"limit": 0
}
Responses
application/json Returns only if there is an error.
The total number of results available.
histories
array [object {6}]Â
optionalThe list of order histories.
The user ID that created the history.
The username that created the history.
The date time history was created.
{
"error": [
"string"
],
"order_id": 0,
"order_status_id": 0,
"total": 0,
"histories": [
{
"order_status": "string",
"order_status_id": 0,
"user_id": 0,
"user": "string",
"comment": "string",
"date_added": "string"
}
]
}
Modified at 2024-10-19 14:37:59