POST
/
api
/
order
/
tracking
curl --request POST \
  --url https://api.artisn.desarrollo-redbrand.com/api/api/order/tracking \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "order_id": "0000001427-010701",
  "status": "OrderReceived",
  "trackingInfo": {
    "trackurl": "https://kfc-co.tracker.dragontail.com/?UID=hE58xI",
    "trackingNumber": "RAP-0100-trackNUmber",
    "deliveryConfirmationCode": "PZ051",
    "shippingCoordinates": [
      {
        "latitude": "-0.20234732693531",
        "longitude": "-78.486171941476"
      }
    ]
  }
}'
{
  "message": "Tracking successfully registered",
  "status": "success"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Tracking information recorded correctly

The response is of type object.