cURL
curl --request GET \ --url https://api.artisn.desarrollo-redbrand.com/api/order/{orderId} \ --header 'Authorization: Bearer <token>'
{ "orderId": "<string>", "accountId": "<string>", "account": "<string>", "source": "<string>", "platform": "<string>", "createdAt": "2023-11-07T05:31:56Z", "client": { "uid": "<string>", "name": "<string>", "lastName": "<string>", "phone": "<string>", "email": "<string>" }, "store": { "id": 123, "name": "<string>", "latitude": "<string>", "longitude": "<string>" }, "order": { "products": [ { "productId": "<string>", "product": "<string>", "quantity": 123, "price": { "unitPrice": {}, "totalPrice": {} } } ] } }
Gets detailed information of a specific order by its ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the order to query.
Order details
The response is of type object.
object