Inventory Transfer API
Updated Sep 13, 2026
1632 views
API Documentation
The Inventory Transfer Item Model
The Inventory Transfer Item object represents the transfer of inventory items between locations within the system. Below is an example of an Inventory Transfer Item object with all possible fields.
json{ "sourceLocation": { "id": "LOC12345", "orgId": "ORG67890", "locationName": "Warehouse A" }, "destinationLocation": { "id": "LOC54321", "orgId": "ORG67890", "locationName": "Store B" }, "items": [ { "id": "ITEM001", "transferQuantity": 10, "price": 25.5, "cost": 20.0 }, { "id": "ITEM002", "transferQuantity": 5, "price": 50.75, "cost": 40.0 } ] }
Inventory Transfer Item Object Properties
This model allows for structured inventory transfers between locations, ensuring accurate tracking and organization of stock movements.
Inventory Transfer Resources
Create an inventory transfer
This endpoint transfers an inventory item from one store location to another.
HTTP Request
httpPOST https://www.myrepairapp.com/api/v2/inventory/transfer
Request Body
The request body must contain a valid InventoryTransfer object.
Response
If successful, the response will include the updated inventory transfer's details.