Create fulfillments from CSV
Upload a UTF-8 CSV with a header row. Columns: qid, sku, quantity, recipient_name, street, street_2, city, state, zip, country, external_ref, special_instructions, deliver_by. Each row provides either qid or sku plus quantity, never both forms. Missing, foreign-partner, and cross-environment QIDs fail that row with the same generic not_found code and no existence detail; unsupported destinations fail that row with unsupported_destination.
POST
/fulfillments/csvAuthorization
X-API-KeyAPI key · headerrequiredAPI key in format `sk_*`. Scoped to your partner account; server-side use only.
Header parameters
Idempotency-KeystringrequiredUnique key for safe retries. Reusing a key on the same endpoint returns the original result.
max length 255
Request body
requiredmultipart/form-datafilestringrequiredResponses
200Rows processed independently.
createdFulfillment[]requiredShow propertiesHide properties
Array of
Fulfillmentidstring<uuid>requiredqidsQID[]requiredstatusFulfillmentStatusrequiredFulfillment lifecycle. Returned means custody has resumed and the item will repeat intake.
Allowed:
pendingprocessingshippeddeliveredcancelledexceptionreturnedprocessing_stageProcessingStage | nullWarehouse sub-stage while status is processing. It may be null when granular telemetry is unavailable; status is always authoritative.
Allowed:
pickedpackedverifiedlabeledqueued_for_carriershipping_addressShippingAddress | anyShow propertiesHide properties
Any of:
ShippingAddress
recipient_namestringrequiredstreetstringrequiredstreet_2string | nullcitystringrequiredstatestringrequiredzipstringrequiredcountrystringrequiredany
anycarrierstring | nullCarrier code once the label exists.
servicestring | nullService code once the label exists.
tracking_numberstring | nulltracking_urlstring<uri> | nullissueFulfillmentIssue | anyShow propertiesHide properties
Any of:
FulfillmentIssue
codestringrequiredMachine-readable issue type.
messagestringrequiredoccurred_atstring<date-time>requiredany
anyexternal_refstring | nullcreated_atstring<date-time>requiredupdated_atstring<date-time>requiredtypeFulfillmentTyperequiredAllowed:
standardwithdrawalspecial_instructionsstring | nulldeliver_bystring<date> | nullverified_address_idstring<uuid> | nullerrorsCsvRowError[]requiredShow propertiesHide properties
Array of
CsvRowErrorcodeErrorCoderequiredStable machine-readable error vocabulary for v1.
Allowed:
validation_errorstate_conflictenvironment_mismatchunsupported_destinationinvalid_api_keynot_foundrate_limitedfieldsobjectrequiredmessagestringrequiredrowintegerrequiredOne-based CSV data-row number, excluding the header.
min 1
totalsCsvBatchTotalsrequiredShow propertiesHide properties
createdintegerrequiredmin 0
failedintegerrequiredmin 0
submittedintegerrequiredmin 0
400Validation failed.
codeErrorCoderequiredStable machine-readable error vocabulary for v1.
Allowed:
validation_errorstate_conflictenvironment_mismatchunsupported_destinationinvalid_api_keynot_foundrate_limitedextraobjectrequiredStructured details such as field errors or SKU availability.
messagestringrequiredHuman-readable summary.
401Missing, invalid, expired, or environment-mismatched API key.
codeErrorCoderequiredStable machine-readable error vocabulary for v1.
Allowed:
validation_errorstate_conflictenvironment_mismatchunsupported_destinationinvalid_api_keynot_foundrate_limitedextraobjectrequiredStructured details such as field errors or SKU availability.
messagestringrequiredHuman-readable summary.
429Rate limit exceeded for this API key.
codeErrorCoderequiredStable machine-readable error vocabulary for v1.
Allowed:
validation_errorstate_conflictenvironment_mismatchunsupported_destinationinvalid_api_keynot_foundrate_limitedextraobjectrequiredStructured details such as field errors or SKU availability.
messagestringrequiredHuman-readable summary.
Try it
Server
Authorization
Parameters
Bodymultipart/form-data
Request
curl -X POST "https://api.vault.stashtab.gg/v1/fulfillments/csv" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Idempotency-Key: string" \
-H "Content-Type: multipart/form-data" \
-d '{
"file": "string"
}'const response = await fetch("https://api.vault.stashtab.gg/v1/fulfillments/csv", {
method: "POST",
headers: {
"X-API-Key": "YOUR_API_KEY",
"Idempotency-Key": "string",
"Content-Type": "multipart/form-data"
},
body: JSON.stringify({
"file": "string"
})
});Response
{
"created": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"qids": [
"7c9e6679-7425-40de-944b-e07fc1f90ae7"
],
"status": "shipped",
"processing_stage": "picked",
"shipping_address": {
"recipient_name": "Jordan Alvarez",
"street": "480 Cedar St",
"street_2": "Apt 12",
"city": "Austin",
"state": "TX",
"zip": "78701",
"country": "US"
},
"carrier": "usps",
"service": "usps_priority_mail",
"tracking_number": "9400111899223857267224",
"tracking_url": "http://example.com",
"issue": {
"code": "address_undeliverable",
"message": "string",
"occurred_at": "2019-08-24T14:15:22Z"
},
"external_ref": "string",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"type": "standard",
"special_instructions": "string",
"deliver_by": "2019-08-24",
"verified_address_id": "e92daf1e-afde-425b-aaf7-6374949522b4"
}
],
"errors": [
{
"code": "validation_error",
"fields": {
"property1": [
"string"
],
"property2": [
"string"
]
},
"message": "string",
"row": 1
}
],
"totals": {
"created": 0,
"failed": 0,
"submitted": 0
}
}{
"code": "validation_error",
"extra": {},
"message": "string"
}{
"code": "validation_error",
"extra": {},
"message": "string"
}{
"code": "validation_error",
"extra": {},
"message": "string"
}