action walmart_get_multi_node_inventory_for_sku_and_all_shipnodes { label: "Single Item Inventory by Ship Node" description: "This API will retrieve the inventory count for an item across all ship nodes or one specific ship node. You can specify the ship node for which you want to fetch the inventory" provider: walmart method: GET path: "/v3/inventories/{sku}" 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" } shipNode: { type: "string" } sku: { type: "string" } } required: ["WM_QOS.CORRELATION_ID", "WM_SEC.ACCESS_TOKEN", "WM_SVC.NAME", "sku"] additionalProperties: false } output: { 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"] } } } errors: { type: "array" items: { type: "object" required: ["code"] properties: { category: { type: "string" enum: ["APPLICATION", "SYSTEM", "REQUEST", "DATA"] } causes: { type: "array" items: { type: "object" properties: { code: { type: "string" } description: { type: "string" } field: { type: "string" } type: { type: "string" } } } } code: { type: "string" } description: { type: "string" } errorIdentifiers: { type: "object" } field: { type: "string" } info: { type: "string" } severity: { type: "string" enum: ["INFO", "WARN", "ERROR"] } } } } 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." } } } }