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
| Field | Value |
|---|---|
| HTTP status | 404 |
errorCategory | not_found |
retryable | false |
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 unknownstoreId.
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:
GET /v1/marketplace/stores— fetch the discovery list for the user's address.- Surface available stores to the user.
- Resubmit using a
storeIdfrom 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