Skip to main content
POST
/
transfer_order
/
create
Transfer Order - Create
curl --request POST \
  --url https://api.skulabs.com/transfer_order/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "items": [
    {
      "item_id": "507f1f77bcf86cd799439011",
      "quantity": 123,
      "source_location_id": "507f1f77bcf86cd799439011",
      "destination_location_id": "507f1f77bcf86cd799439011"
    }
  ],
  "source_warehouse_id": "507f1f77bcf86cd799439011",
  "destination_warehouse_id": "507f1f77bcf86cd799439011",
  "number": 123,
  "notes": "<string>"
}
'
{
  "success": true,
  "_id": "507f1f77bcf86cd799439011"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
items
object[]
required

Items to include in the transfer order

source_warehouse_id
string
required

Source warehouse ID

Example:

"507f1f77bcf86cd799439011"

destination_warehouse_id
string
required

Destination warehouse ID

Example:

"507f1f77bcf86cd799439011"

number
number | null

Transfer order number (auto-generated if null)

notes
string | null

Transfer order notes

Response

Transfer order created

success
boolean
required

Whether the operation succeeded

_id
string
required

ID of the created resource

Example:

"507f1f77bcf86cd799439011"