Gett Developer Portal
  • Welcome
  • Distribution Partners
  • Brand Partners
  • Commerce Partners
  • Ecosystem Partners
  • Errors
  • API Reference
Documentation
  • Get Started
  • Marketfront SDK
  • API Reference
Resources
  • Payments
Company
  • Gett
  • Terms of Service
  • Privacy Policy

Copyright 2026 Gett. All rights reserved.

409 Conflict403 Forbidden500 Internal Server Error400 Bad Request404 Not Found429 Too Many Requests503 Service Unavailable401 Unauthorized502 Bad Gateway422 Unprocessable EntityADDRESS_INVALIDADDRESS_OUT_OF_RANGECART_EMPTYCATALOGSET_NOT_FOUNDCATALOGSET_REQUIREDITEM_UNAVAILABLEMODIFIER_REQUIREDORDER_ALREADY_PLACEDORDER_BELOW_MINIMUMORDER_TOTAL_DIFFERENTPAYMENT_DECLINEDPAYMENT_FAILEDPAYMENT_METHOD_INVALIDSESSION_USER_REQUIREDSTORE_CLOSEDSTORE_NOT_FOUND
powered by Zuplo
Errors

CATALOGSET_NOT_FOUND

CATALOGSET_NOT_FOUND

The catalog set referenced by catalogSetId does not exist (or has been removed).

Summary

FieldValue
HTTP status404
errorCategorynot_found
retryablefalse

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 unknown catalogSetId.
  • POST /v1/marketplace/orders/validate / /place — order references a stale catalogSetId that has since been removed.

Recommended Action

Re-resolve the catalog set from the store and retry with a fresh id:

  1. GET /v1/marketplace/stores/{storeId} — read the current catalogSetId.
  2. 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
{ "type": "https://developer.gett-tech.com/errors/CATALOGSET_NOT_FOUND", "title": "Not Found", "status": 404, "detail": "Catalog set 'abc-123' not found.", "instance": "/v1/marketplace/catalog-sets/abc-123", "requestId": "req_abc123", "timestamp": "2026-04-27T14:30:00.000Z", "errorCode": "CATALOGSET_NOT_FOUND", "errorCategory": "not_found", "retryable": false }
CART_EMPTYCATALOGSET_REQUIRED
On this page
  • Summary
  • When This Fires
  • Recommended Action
  • Example
JSON