Add tracking to an order.

POST /api/v2/trackings/{publicId}

Path parameters

application/json

Body Required

Responses

  • 200 application/json

    Add tracking to an order

    Hide response attributes Show response attributes object
  • 400 application/json

    Bad request

    Hide response attributes Show response attributes object
  • 500 application/json

    Internal server error

    Hide response attributes Show response attributes object
POST /api/v2/trackings/{publicId}
curl \
 --request POST 'https://bi.agora.place/api/v2/trackings/{publicId}' \
 --header "Content-Type: application/json" \
 --data '{"tracking_number":"string","slug":"string"}'
Request examples
{
  "tracking_number": "string",
  "slug": "string"
}
Response examples (200)
{
  "code": 200,
  "msg": "Success"
}
Response examples (400)
{
  "code": 400,
  "msg": "Bad Request"
}
Response examples (500)
{
  "code": 500,
  "msg": "Internale Server Error"
}