Get the status of an order
curl --request GET \ --url https://staging-api.covver.io/api/ext/v1/collection/{collectionId}/orders/{orderId} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "createdAt": "2023-11-07T05:31:56Z", "status": "Placed", "lineItems": [ { "id": "<string>", "title": "<string>", "trackingUrl": "<string>", "trackingNumber": "<string>", "status": "canceled", "allShipments": [ { "trackingUrl": "<string>", "trackingNumber": "<string>" } ] } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Default Response
The response is of type object.
object