Adyen · Schema

DisputeServiceResult

DisputeServiceResult schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
errorMessage string The general error message.
success boolean Indicates whether the request succeeded.
View JSON Schema on GitHub

JSON Schema

disputes-dispute-service-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/disputes-dispute-service-result-schema.json",
  "title": "DisputeServiceResult",
  "description": "DisputeServiceResult schema from Adyen API",
  "type": "object",
  "properties": {
    "errorMessage": {
      "description": "The general error message.",
      "type": "string"
    },
    "success": {
      "description": "Indicates whether the request succeeded.",
      "type": "boolean"
    }
  },
  "required": [
    "success"
  ]
}