VUZDevelopers

Get movement summary

GET
/inventory/movements/summary

Get movement summary for a specific period

X-Api-Key<token>

Business API key, e.g. vuz_ab12cdef... Created via Settings → Integrations → API Keys. Unlike partner keys, a public API key's STRING does not encode its environment — isolation instead comes from a completely separate sandbox database: a key minted on the Sandbox server (above) only ever reads/writes sandbox data and can never see or affect production, regardless of what the key looks like.

In: header

Query Parameters

fromDate*string

Period start date

toDate*string

Period end date

warehouseId?string

Filter by warehouse

productId?string

Filter by product

Header Parameters

x-business-id*string

Business ID

Response Body

application/json

curl -X GET "https://example.com/inventory/movements/summary?fromDate=string&toDate=string" \  -H "x-business-id: string"
{  "periodStart": "2019-08-24T14:15:22Z",  "periodEnd": "2019-08-24T14:15:22Z",  "totalInbound": 0,  "totalOutbound": 0,  "netChange": 0,  "totalInboundValue": 0,  "totalOutboundValue": 0,  "movementCount": 0}