DocumentationGlobal Error Format

Global Error Format

All error responses follow this structure:

{
  "success": false,
  "error": "error_code", // snake_case machine-friendly code
  "message": "Human-readable explanation"
}

Common Error Codes

CodeMeaning
not_foundResource does not exist
validation_errorMissing or invalid field
unauthorizedInvalid/missing token
duplicate_orderDuplicate integration_order_id
invalid_actionAction not allowed for the current state
internal_errorSomething went wrong on our side
Updated 4 months ago