Skip to main content
POST
/
api
/
order
/
dispatched
Pickup orders - dispatched
curl --request POST \
  --url https://api.artisn.desarrollo-redbrand.com/api/api/order/dispatched \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "codigo_app": "0000007860-010106",
  "id_transaccion": "XH4TDASD7812LDTST"
}'
{
  "message": "Order successfully shipped",
  "status": "success"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
codigo_app
string
required

Application code

Example:

"0000007860-010106"

id_transaccion
string
required

transaction ID

Example:

"XH4TDASD7812LDTST"

Response

Order successfully shipped

message
string

success message

Example:

"Order successfully shipped"

status
string

Operation status

Example:

"success"