Mastercard · Schema

Error

Error object

Credit CardsDigital IdentityFinancial ServicesFraud DetectionOpen BankingPaymentsFortune 500

Properties

Name Type Description
Source string Source of the error
ReasonCode string A unique constant identifying the error
Description string Short description of the error
Recoverable boolean Indicates whether this error will always be returned for this request, or retrying could change the outcome
Details string Optional detailed description of the issue
View JSON Schema on GitHub

JSON Schema

mastercard-ethoca-merchant-self-services-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Error",
  "type": "object",
  "description": "Error object",
  "properties": {
    "Source": {
      "type": "string",
      "description": "Source of the error"
    },
    "ReasonCode": {
      "type": "string",
      "description": "A unique constant identifying the error"
    },
    "Description": {
      "type": "string",
      "description": "Short description of the error"
    },
    "Recoverable": {
      "type": "boolean",
      "description": "Indicates whether this error will always be returned for this request, or retrying could change the outcome"
    },
    "Details": {
      "type": "string",
      "description": "Optional detailed description of the issue"
    }
  }
}