Skip to main content
POST
/
fulfillmentPlans
/
{sellerId}
/
skuMapping
Create fulfillment plan
curl --request POST \
  --url https://api.quivo.co/fulfillmentPlans/{sellerId}/skuMapping \
  --header 'Content-Type: application/json' \
  --data '
{
  "externalSku": "<string>",
  "sku": "<string>",
  "quantity": 123
}
'
This response has no body data.

Path Parameters

sellerId
integer<int64>
required

The unique identifier for the seller account. This ID is used to scope operations to a specific seller's data and resources.

Body

application/json

Data to create a new resource at /fulfillmentPlans/{sellerId}/skuMapping

Request payload for mapping seller SKUs to warehouse SKUs in a fulfillment plan. Links external seller product identifiers to internal warehouse inventory codes.

externalSku
string

Stock Keeping Unit (SKU) identifier

sku
string

Stock Keeping Unit (SKU) identifier

quantity
integer<int32>

Quantity or amount

Response

Bad request - the request payload is invalid, missing required fields, or contains invalid data.