Create Warehouse Transfer
POST/api/warehouses/transfers
Creates a warehouse transfer (in draft status) moving stock between two warehouses.
warehouses:writeGrant this scope to your token under Settings → Developer → Personal Access Tokens.
Fields: from_warehouse_id and to_warehouse_id (required, must differ), transfer_date, eta (must not be before transfer_date), products (array of {product_id, quantity, quantity_cancelled, description, sales_channel_unique_id}), shipping_method_id, shipment (object with shipment_date, tracking_number, cost - creates an initial shipment), shipment_id (required when the destination is an Amazon FBA warehouse - the Amazon inbound shipment ID), order_id and custom_field_values (array of {custom_field_id, value}).
Returns 400 when a product does not have enough available stock in the source warehouse.
Authentication: Requires Bearer token.
Request
Responses
- 201
- 400
- 401
- 403
- 422
- 429
Created
Response Headers
Bad Request
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Validation failed — the body is a field → messages map (Laravel shape) or the platform envelope with a stable machine-readable code. Fix the payload and resubmit.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.