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_REQUIRED

CATALOGSET_REQUIRED

A new cart must be created against a specific catalog set; the request omitted catalogSetId.

Summary

FieldValue
HTTP status400
errorCategoryvalidation
retryablefalse

When This Fires

  • POST /v1/marketplace/carts/items — the request omitted catalogSetId and no existing cart was supplied. Each cart is bound to one catalog set so subsequent line-item validation and pricing have a stable basis.

Recommended Action

Resolve the catalogSetId from the store you are ordering from and include it on the request:

TerminalCode
GET /v1/marketplace/stores/{storeId}

Use the returned catalogSetId on the next cart-create call:

TerminalCode
POST /v1/marketplace/carts/items Authorization: Bearer YOUR_SESSION_TOKEN Content-Type: application/json { "storeId": "{storeId}", "catalogSetId": "{catalogSetId}", "item": { ... } }

Example

Code
{ "type": "https://developer.gett-tech.com/errors/CATALOGSET_REQUIRED", "title": "Bad Request", "status": 400, "detail": "CatalogSetId is required when creating a new cart", "instance": "/v1/marketplace/carts/items", "requestId": "req_abc123", "timestamp": "2026-04-27T14:30:00.000Z", "errorCode": "CATALOGSET_REQUIRED", "errorCategory": "validation", "retryable": false }
CATALOGSET_NOT_FOUNDITEM_UNAVAILABLE
On this page
  • Summary
  • When This Fires
  • Recommended Action
  • Example
JSON