Skip to main content
POST
/
fulfillmentPlans
/
{sellerId}
/
skuFork
Create fulfillment plan
curl --request POST \
  --url https://api.quivo.co/fulfillmentPlans/{sellerId}/skuFork \
  --header 'Content-Type: application/json' \
  --data '
{
  "fromSku": "<string>",
  "to": [
    {
      "sku": "<string>",
      "quantity": 123,
      "piecePrice": 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}/skuFork

Request payload for forking or splitting SKUs in a fulfillment plan. Used to create multiple derived SKUs from a source SKU with specified quantities and prices.

fromSku
string

Stock Keeping Unit (SKU) identifier

to
object[]

Array of target SKU configurations for the fork operation

Response

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