PUT
/
api
/
order
/
transfer
curl --request PUT \
  --url https://api.artisn.desarrollo-redbrand.com/api/api/order/transfer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "order": "0000000246-010103",
  "from_store": "K046",
  "to_store": "K153",
  "processed_by": "Juanito P",
  "transfer_reason": "Pickup order test transfer",
  "shipping_address": ""
}'
{
  "message": "Order transferred successfully",
  "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

Order transferred successfully

The response is of type object.