GET
/
order
/
{orderId}
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": {}
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

orderId
string
required

ID of the order to query.

Response

200
application/json

Order details

The response is of type object.