curl --request POST \
--url https://api.skulabs.com/transfer_order/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"number": 123,
"items": [
{}
],
"source_warehouse_id": "<string>",
"destination_warehouse_id": "<string>",
"notes": "<string>"
}'
/transfer_order/create
curl --request POST \
--url https://api.skulabs.com/transfer_order/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"number": 123,
"items": [
{}
],
"source_warehouse_id": "<string>",
"destination_warehouse_id": "<string>",
"notes": "<string>"
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK