{ "opencollection": "1.0.0", "info": { "name": "Blue Yonder Warehouse Management Inventory API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://auth.blueyonder.example.com/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Inventory", "type": "folder" }, "items": [ { "info": { "name": "List inventory positions", "type": "http" }, "http": { "method": "GET", "url": "https://api.blueyonder.example.com/wms/v1/inventory", "params": [ { "name": "locationId", "value": "", "type": "query", "description": "Filter by warehouse location" }, { "name": "itemId", "value": "", "type": "query", "description": "Filter by item/SKU identifier" }, { "name": "status", "value": "", "type": "query" }, { "name": "page", "value": "", "type": "query" }, { "name": "pageSize", "value": "", "type": "query" } ] }, "docs": "Retrieve current inventory levels and positions across warehouse locations." }, { "info": { "name": "Get inventory for item", "type": "http" }, "http": { "method": "GET", "url": "https://api.blueyonder.example.com/wms/v1/inventory/:itemId", "params": [ { "name": "itemId", "value": "", "type": "path" } ] }, "docs": "Get inventory levels and all warehouse locations for a specific item/SKU." } ] } ], "bundled": true }