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

STORE_NOT_FOUND

STORE_NOT_FOUND

The storeId on the request does not resolve to a known store. The id is a well-formed Guid but no store exists for it.

Summary

FieldValue
HTTP status404
errorCategorynot_found
retryablefalse

When This Fires

  • GET /v1/marketplace/stores/{storeId} — direct lookup by id.
  • GET /v1/marketplace/stores/{storeId}/catalog — implicit store lookup.
  • POST /v1/marketplace/orders/validate / /place — order references a stale or unknown storeId.

If the id isn't a well-formed Guid, the route returns 404 directly without a body.

Recommended Action

Re-discover stores and resubmit with a current id:

  1. GET /v1/marketplace/stores — fetch the discovery list for the user's address.
  2. Surface available stores to the user.
  3. Resubmit using a storeId from the fresh list.

If the user came in via a deep link with a stale id, redirect them back to discovery rather than retrying.

Example

Code
{ "type": "https://developer.gett-tech.com/errors/STORE_NOT_FOUND", "title": "Not Found", "status": 404, "detail": "Store 'abc-123' not found.", "instance": "/v1/marketplace/stores/abc-123", "requestId": "req_abc123", "timestamp": "2026-04-27T14:30:00.000Z", "errorCode": "STORE_NOT_FOUND", "errorCategory": "not_found", "retryable": false }
STORE_CLOSED
On this page
  • Summary
  • When This Fires
  • Recommended Action
  • Example
JSON