We use conventional HTTP response codes to indicate the success or failure of an API request.The 2XX range indicates success.The 4XX range indicates an error that failed given the information provided (e.g., a required parameter was omitted, etc.).The 5XX range indicates an error with our servers (these are rare).In addition, name, message, code, and status will be applied to the error response.{
"name":"Unprocessable entity",
"message":"Amount cannot be blank.",
"code":422,
"status":422
}
Modified at 2025-08-09 05:39:42