Developer
News and Updates
Get Support
Sign in
Get Support
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Key-Value Store
Custom Entity Store
SQL
Object Store (Preview)
Last updated Jun 22, 2026

Error handling for the Object Store

Forge Object Store is now in Preview, and therefore fully supported. However, it remains under active development and may be subject to shorter deprecation windows. Preview features are suitable for early adopters in production environments.

We release preview features so partners and developers can study, test, and integrate them prior to General Availability (GA). For more details, see Forge EAP, Preview, and GA.

When a request fails, the Forge Object Store returns a structured error response:

1
2
interface ForgeError {
  code: string;
  message: string;
  suggestion: string;
}

In this response:

  • code: A machine-readable error code.
  • message: A human-readable description of the error.
  • suggestion: A recommended action to resolve the error.

Status codes

Common HTTP status codes returned by the Object Store:

Status codeDescription
400Invalid request body or parameters.
404The requested object was not found.
429Rate limit exceeded. See Object Store limits.
500Internal server error.

Rate this page: