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

CART_EMPTY

CART_EMPTY

The request operates on an order whose cart contains no line items. Validation and placement both require at least one line item.

Reserved error code — not currently emitted by any endpoint. Partners may begin handling it defensively; backend will start emitting once wired in.

Summary

FieldValue
HTTP status400
errorCategoryvalidation
retryablefalse

When This Fires

  • POST /v1/marketplace/orders/validate — the cart attached to the order has zero line items.
  • POST /v1/marketplace/orders/place — placement attempted on an empty cart.

Recommended Action

Add at least one line item to the cart before resubmitting:

  1. Re-open the menu (GET /v1/marketplace/stores/{storeId}/catalog) and let the user select an item.
  2. Add it via your cart-mutation flow.
  3. Resubmit validate / place.

A retry without modifying the cart will fail with the same error.

Example

Code
{ "type": "https://developer.gett-tech.com/errors/CART_EMPTY", "title": "Bad Request", "status": 400, "detail": "The cart has no line items.", "instance": "/v1/marketplace/orders/validate", "requestId": "req_abc123", "timestamp": "2026-04-27T14:30:00.000Z", "errorCode": "CART_EMPTY", "errorCategory": "validation", "retryable": false }
ADDRESS_OUT_OF_RANGECATALOGSET_NOT_FOUND
On this page
  • Summary
  • When This Fires
  • Recommended Action
  • Example
JSON