SumUp · Schema

Error Forbidden

Error message for forbidden requests.

PaymentsPOSPoint of SaleCard ReadersCheckoutFintechMobile PaymentsOnline Payments

Properties

Name Type Description
error_message string Short description of the error.
error_code string Platform code for the error.
status_code string HTTP status code for the error.
View JSON Schema on GitHub

JSON Schema

errorforbidden.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Error Forbidden",
  "description": "Error message for forbidden requests.",
  "type": "object",
  "properties": {
    "error_message": {
      "description": "Short description of the error.",
      "type": "string",
      "example": "request_not_allowed"
    },
    "error_code": {
      "description": "Platform code for the error.",
      "type": "string",
      "example": "FORBIDDEN"
    },
    "status_code": {
      "description": "HTTP status code for the error.",
      "type": "string",
      "example": "403"
    }
  }
}