Errors
CATALOGSET_NOT_FOUND
CATALOGSET_NOT_FOUND
The catalog set referenced by catalogSetId does not exist (or has been removed).
Summary
| Field | Value |
|---|---|
| HTTP status | 404 |
errorCategory | not_found |
retryable | false |
When This Fires
GET /v1/marketplace/catalog-sets/{catalogSetId}— the supplied id does not resolve to a known catalog set.POST /v1/marketplace/carts/items— cart creation referenced an unknowncatalogSetId.POST /v1/marketplace/orders/validate//place— order references a stalecatalogSetIdthat has since been removed.
Recommended Action
Re-resolve the catalog set from the store and retry with a fresh id:
GET /v1/marketplace/stores/{storeId}— read the currentcatalogSetId.- Use that id on the next request.
If the user's session held a stale catalogSetId, drop the cart and rebuild from the fresh catalog before resubmitting.
Example
Code