Submit an expected manifest
The order sheet: what you bought and expect to arrive. Each line carries as much identifying detail as you have — a cert number when known, otherwise a free-text description. Incoming items are matched against open manifest lines during intake.
Prefer CSV? POST /manifests/csv accepts the same data as a file
upload.
POST
/manifestsAuthorization
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
requiredapplication/jsonreferencestringrequiredYour reference for this purchase batch (PO number, buy sheet ID).
sourceManifestSourceWhere this purchase batch came from.
Allowed:
card_showmarketplacedistributorotherexpected_arrival_startstring<date> | nullexpected_arrival_endstring<date> | nulllinesManifestLineCreate[]requiredmin items 1
Show propertiesHide properties
Array of
ManifestLineCreateexternal_refstring | nullYour identifier for this expected item; echoed on the matched item.
descriptionstringrequiredWhat you expect, in your words.
graderstring | nullcert_numberstring | nullStrongest match key when known.
quantityintegermin 1 · default: 1
skustring | nullCatalog SKU for a product line. The SKU must already exist in this partner's catalog.
Responses
201Manifest accepted and open for matching.
idstring<uuid>requiredreferencestringrequiredsourceManifestSourceWhere this purchase batch came from.
Allowed:
card_showmarketplacedistributorotherstatusManifestStatusrequired`submitted` — open, nothing matched yet; `receiving` — items are arriving and matching; `reconciled` — the reconciliation report has been finalized.
Allowed:
submittedreceivingreconciledexpected_arrival_startstring<date> | nullexpected_arrival_endstring<date> | nullline_countintegerrequiredcreated_atstring<date-time>required400Validation 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
Bodyapplication/json
Request
curl -X POST "https://api.vault.stashtab.gg/v1/manifests" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Idempotency-Key: string" \
-H "Content-Type: application/json" \
-d '{
"reference": "BUY-2026-06-0031",
"source": "card_show",
"expected_arrival_start": "2019-08-24",
"expected_arrival_end": "2019-08-24",
"lines": [
{
"external_ref": "string",
"description": "2018 Panini Prizm Luka Doncic",
"grader": "PSA",
"cert_number": "48291077",
"quantity": 1,
"sku": "string"
}
]
}'const response = await fetch("https://api.vault.stashtab.gg/v1/manifests", {
method: "POST",
headers: {
"X-API-Key": "YOUR_API_KEY",
"Idempotency-Key": "string",
"Content-Type": "application/json"
},
body: JSON.stringify({
"reference": "BUY-2026-06-0031",
"source": "card_show",
"expected_arrival_start": "2019-08-24",
"expected_arrival_end": "2019-08-24",
"lines": [
{
"external_ref": "string",
"description": "2018 Panini Prizm Luka Doncic",
"grader": "PSA",
"cert_number": "48291077",
"quantity": 1,
"sku": "string"
}
]
})
});Response
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"reference": "string",
"source": "card_show",
"status": "submitted",
"expected_arrival_start": "2019-08-24",
"expected_arrival_end": "2019-08-24",
"line_count": 0,
"created_at": "2019-08-24T14:15:22Z"
}{
"code": "validation_error",
"extra": {},
"message": "string"
}{
"code": "validation_error",
"extra": {},
"message": "string"
}{
"code": "validation_error",
"extra": {},
"message": "string"
}