SumUp · Schema

Error

Error message structure.

PaymentsPOSPoint of SaleCard ReadersCheckoutFintechMobile PaymentsOnline Payments

Properties

Name Type Description
message string Short description of the error.
error_code string Platform code for the error.
View JSON Schema on GitHub

JSON Schema

error.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Error",
  "description": "Error message structure.",
  "type": "object",
  "properties": {
    "message": {
      "description": "Short description of the error.",
      "type": "string",
      "example": "Resource not found"
    },
    "error_code": {
      "description": "Platform code for the error.",
      "type": "string",
      "example": "NOT_FOUND"
    }
  }
}