Resource errors
The resource error object and the allowed CRUD operations on the related resource endpoint
Resource errors are generated anytime an operation on a resource fails to let you inspect the related errors by looking at the code
and message
attributes. To do that, just fetch the resource and include resource_errors
as an association (you must use integration API credentials).
Orders
Most of the errors generated by the management of your orders are included in the associated resource errors array. Among them:
Errors occurred during the attempt to place an order (both synchronously and asynchronously).
Errors coming from external validations.
Errors due to failed subscription occurrences.
For each order, the latest 10 errors are stored. Once the order is approved, the associated errors list is emptied and the errors count is reset to zero.
This is an immutable API, meaning that create, update, and delete operations are not allowed on this endpoint. You can only fetch a list of resource errors or a specific single one.
Last updated