CURL Examples
Listing all Inventory for initial data load
curl 'https://user.traxia.com/app/api/inventory' --data '{ "key": "YOUR API KEY", "includeItemsWithQuantityZero": "false"}' -H 'Accept: application/json' -H 'Content-Type: application/json' -X POST
Listing changes in inventory based on a UNIX-style timestamp (Milliseconds since the Epoch)
curl 'https://user.traxia.com/app/api/inventory' --data '{ "key": "YOUR API KEY", "modifiedSince": 1406553000000, "includeInactiveItems": "true", "includeItemsWithQuantityZero": "true"}' -H 'Accept: application/json' -H 'Content-Type: application/json' -X POST
Last modified 1yr ago