Skip to main content
PUT
/
api
/
order
/
transfer
Orders - 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
order
string
required

Order ID

Example:

"0000000246-010103"

from_store
string
required

Origin Store Code

Example:

"K046"

to_store
string
required

Target store code

Example:

"K153"

processed_by
string
required

Name of the person processing the transfer

Example:

"Juanito P"

transfer_reason
string
required

Reason for transfer

Example:

"Pickup order test transfer"

shipping_address
string | null

Shipping address (optional)

Example:

""

Response

Order transferred successfully

message
string

success message

Example:

"Order transferred successfully"

status
string

Operation status

Example:

"success"