action walmart_get_wfsinventory { label: "WFS Inventory" description: "You can use this API to get the current Available to Sell inventory quantities for all WFS items in your catalog. You can also query specific SKUs or filter to only items updated after a specific date in order to reduce the response size." provider: walmart method: GET path: "/v3/fulfillment/inventory" 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" } fromModifiedDate: { type: "string" } limit: { type: "string" } offset: { type: "string" } sku: { type: "string" } toModifiedDate: { type: "string" } } required: ["WM_QOS.CORRELATION_ID", "WM_SEC.ACCESS_TOKEN", "WM_SVC.NAME"] additionalProperties: false } output: { type: "object" properties: { headers: { type: "object" properties: { limit: { type: "integer" format: "int32" description: "Information about the quantity in inventory" } offset: { type: "integer" format: "int32" description: "Offset is the number of records you wish to skip before selecting results." } totalCount: { type: "integer" format: "int32" description: "Total number of results for query." } } } payload: { type: "object" properties: { inventory: { type: "array" items: { type: "object" properties: { shipNodes: { type: "array" items: { type: "object" properties: { availToSellQty: { type: "integer" format: "int32" description: "The available quantity is the quantity of an item that is available to be allocated to orders." } modifiedDate: { type: "string" description: "Last changes date for the item." } onHandQty: { type: "integer" format: "int32" description: "The on-hand balance is the quantity of active inventory stored at the warehouse.Active inventory is defined as the usable amount of an item that is in the warehouse.Inventory is active if it is not damaged, expired or being inspected." } shipNodeType: { type: "string" description: "Identifies fulfillment aspect of invetory. Walmart, seller or 3PL fulfilled. Possible value is 'WFSFulfilled'. In later phase we will also add seller fulfilled inventory." } } } } sku: { type: "string" description: "An arbitrary alphanumeric unique ID, specified by the seller, which identifies each item." } } } } } } } } }