GET api/order/{orderId}/status Authentication required
Use this method to get an order's status
Request
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
orderId |
Id of the order |
integer |
Required |
Response
Returns the status of the order
Output : object (See Model)Ouput Sample
{
"status": "sample string 1",
"queuePosition": 2,
"globalProgress": 3.1,
"items": [
{
"name": "sample string 1",
"progress": 2.1
},
{
"name": "sample string 1",
"progress": 2.1
}
]
}