Walmart Fulfillment Services (WFS) API overview
Walmart Fulfillment Services (WFS) offers sellers another tool to grow their business and reach more customers by fulfilling orders at Walmart Fulfillment Centers (FC). Order fulfillment with WFS is fast at a low cost to sellers.
Sellers can store their inventory at Walmart FCs and get access to Walmart's omni channel capabilities, such as our Free & Easy Returns program, which provides a competitive advantage that no other third-party service can offer.
WFS allows sellers to increase sales by offering free 2-day shipping and gaining prominence with Buy Box by tagging their items with the 2-day tag.
To learn the advantages of using WFS, see Walmart Fulfillment Services.
WFS inbound order and shipment workflow
There is a new process for creating new inbound orders (IO) and shipping inventory to fulfillment centers.
WFS API workflow
To set up items for WFS and create Inbound Orders (IO) to ship inventory to the WFS fulfillment network, use the WFS fulfillment APIs in this order:
Note: You can either set up items with the WFS item spec or convert existing items with the WFS conversion spec. Select either Option 1 or Option 2.
- Option 1: Set up items for ingestion with the WFS item spec. Use the Bulk Item Setup (Multiple) API
POST /v3/feeds?feedType=MP_WFS_ITEM
- Option 2: Convert existing ingested items for use with WFS: Call Convert items for WFS API:
POST /v3/feeds?feedType=OMNI_WFS
- Create an Inbound Order (IO). Call Create inbound Shipment API:
POST /v3/inbound-shipments?sellerId={sellerId}
- Check for errors in the IO. Call Inbound Shipment Errors API:
GET /v3/inbound-shipment-errors?{}
- Get IO shipment-level details. Call Get Shipments API:
GET /v3/inbound-shipments
- Get the IO SKU-level item details from the fulfillment center. Call Inbound Shipment Items API:
GET /v3/shipment-items
- Update shipment quantities before delivery. Call Update Shipment Quantities API:
GET /v3/shipment-quantities?sellerId={sellerId}
- Request shipping labels. Call Create Inbound Shipment Label API:
GET /v3/fulfillment/label/{shipmentId}
- Provide the shipment tracking information. Call Update Shipment Tracking API:
POST /v3/shipment-tracking?sellerId={sellerId}
- Cancel an IO. Call Cancel Inbound Shipment API:
DELETE /v3/inbound-shipments/{inboundOrderId}?sellerId={sellerId}
Updated about 11 hours ago