action walmart_get_multi_node_inventory_for_all_sku_and_all_ship_nodes { label: "Multiple Item Inventory for All Ship Nodes" description: "This API will retrieve the inventory count for all of a seller's items across all ship nodes by item to ship node mapping. Inventory can be zero or non-zero. Please note that NextCursor value changes and it needs to be passed on from the previous call to next call." provider: walmart method: GET path: "/v3/inventories" encoding: json input: { type: "object" properties: { "WM_CONSUMER.CHANNEL.TYPE": { type: "string" } "WM_QOS.CORRELATION_ID": { type: "string" } "WM_SEC.ACCESS_TOKEN": { type: "string" } "WM_SVC.NAME": { type: "string" } limit: { type: "string" } nextCursor: { type: "string" } } required: ["WM_QOS.CORRELATION_ID", "WM_SEC.ACCESS_TOKEN", "WM_SVC.NAME"] additionalProperties: false } output: { type: "object" properties: { elements: { type: "object" properties: { inventories: { type: "array" items: { type: "object" properties: { nodes: { type: "array" items: { type: "object" properties: { availToSellQty: { type: "object" description: "Quantity of an item that is available to be allocated to orders" required: ["amount", "unit"] properties: { amount: { type: "number" description: "Inventory Count" } unit: { type: "string" description: "The unit of measurement. Example: 'EACH'" enum: ["EACH"] } } } inputQty: { type: "object" description: "Quantity of an item that is input by the seller" required: ["amount", "unit"] properties: { amount: { type: "number" description: "Inventory Count" } unit: { type: "string" description: "The unit of measurement. Example: 'EACH'" enum: ["EACH"] } } } reservedQty: { type: "object" description: "Quantity that has been ordered by the customers but not yet shipped" required: ["amount", "unit"] properties: { amount: { type: "number" description: "Inventory Count" } unit: { type: "string" description: "The unit of measurement. Example: 'EACH'" enum: ["EACH"] } } } shipNode: { type: "string" description: "ShipNode Id of the ship node for which the inventory is requested" } } } } sku: { type: "string" description: "An arbitrary alphanumeric unique ID, specified by the seller, which identifies each item." } } } } } } meta: { type: "object" properties: { nextCursor: { type: "string" description: "Used for pagination to fetch the next set of items." } totalCount: { type: "number" description: "Total number of Skus of the Seller. Example: '235'" } } } } } }