Partially updates an existing inventory transfer order. Only the provided fields will be updated.
Security
BearerAuth
- Mock serverhttps://hive-merchant-api.redocly.app/_mock/merchant-api-v2/mapi_v2_oas31/inventory_transfer_orders/{id}
- Production APIhttps://app.hive.app/merchant_api/v2/inventory_transfer_orders/{id}
- Staging APIhttps://staging.app.hive.app/merchant_api/v2/inventory_transfer_orders/{id}
curl -i -X PATCH \
'https://hive-merchant-api.redocly.app/_mock/merchant-api-v2/mapi_v2_oas31/inventory_transfer_orders/{id}' \
-H 'Authorization: Bearer <YOUR_token_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"order_notes": "Updated notes",
"destination_id": 3
}'Inventory transfer order updated successfully
List of documents associated with the inventory transfer order
List of items in the inventory transfer order
List of restocking shipments associated with the inventory transfer order
List of shipments associated with the inventory transfer order
Status of the inventory transfer order. Possible values:
- pending: Initial status when the transfer order is created
- created: The transfer order has been created and is ready for processing
- processing: The transfer order is currently being processed
- completed: The transfer order has been successfully completed
- cancelled: The transfer order has been cancelled
Enum:"pending""created""processing""completed""cancelled"
Response
{ "id": 297, "status": "processing", "created_at": "2025-06-05T15:15:12.256+02:00", "completed_at": null, "order": { "id": 1195780, "status": "processing" }, "origin_id": 4, "destination_id": 2, "order_notes": "", "documents": [], "restocking_shipments": [ { … } ], "shipments": [ { … } ], "items": [ { … } ], "updated_at": "2025-06-05T16:20:15.300+02:00" }