Inventory Transfer Updates
Sent when an inventory transfer is created or its status changes.
{
"inventoryTransferId": 1,
"createdAt": "2025-01-01T00:00:00.000000Z",
"updatedAt": "2025-01-01T00:00:00.000000Z",
"status": "INVENTORY_TRANSFER_STATUS_PENDING",
"merchantId": 1,
"fulfilmentLocationId": 1,
"trackingUrl": "https://track.quiver.london/EXAMPLE",
"sentLineItems": [
{
"quantity": 100,
"product": {
"productId": 1,
"createdAt": "2025-01-01T00:00:00.000000Z",
"updatedAt": "2025-01-01T00:00:00.000000Z",
"merchantId": 1,
"name": "PRODUCT_1",
"merchantProductId": "PRODUCT_1"
}
}
],
"receivedLineItems": []
}
sentLineItems is what was dispatched; receivedLineItems fills in as stock is checked in at the destination. Comparing the two tells you whether a transfer arrived complete.