Error handling
Error report
When an HTTP error occurs, an error report is returned with the following information:
Property | Type | Description and value |
---|---|---|
Message | string | The description of the error. |
Type | string | The type of the error (e.g., param_error, resource_not_found, etc.) |
Id | string | The unique identifier of the error. This information may be requested by our Support team when investigating an issue. |
Date | timestamp | The date and time at which the error occurred. |
errors | array | The list of issues that triggered the HTTP error. |
Error report example (JSON)
{
"Message":"A resource has already been created with this Idempotency Key",
"Type":"idempotent_creation_conflict",
"Id":"13c824a3-06b9-465f-90a7-3d7262d35b66#1658230707",
"Date":1658230708.0,
"errors":null
}
Was this page helpful?