Prerequisites
Before you start, make sure you have:- Session token: A valid session token. See the Authentication guide to learn how to obtain one.
- Seller ID: Use the
GET /sellers endpointto find it. - Warehouse ID: Use the
GET /warehouses endpointto list available warehouses. - Product SKUs: The items you are sending must already exist. Use the
GET /articles endpointto find them.
All API examples in this guide use
${BASE_URL} as a placeholder. Replace it with the correct base URL configured for the correct environment. For more information see Environments page.Create the inbound request
Create an inbound record when you are preparing to send products to a Quivo warehouse. You must tell the warehouse exactly what’s coming so they can plan for its arrival using thePOST /inbounds endpoint.
The following example shows a complete inbound payload with all required fields and some common optional fields.
- Request
- Response
Use this request to create a new inbound record and notify the warehouse about incoming stock.
Track inbound status
After creating an inbound record, use this endpoint to monitor the processing status. Once your shipment arrives, the warehouse team starts scanning the items. Check the status of this process via the API using theGET /inbounds/{inboundId} endpoint.
- Request
- Response
Use this request to retrieve the current status of an existing inbound by its ID.
Where to go next
Now that you have sent inventory to the warehouse, continue with these guides:Create a Fulfillment Order
Once Quivo processes your inventory, create fulfillment orders to start shipping products to customers.
Track an Order
Monitor order status and retrieve tracking information for shipments.