Adyen · JSON Structure

Management Webhooks Account Capability Data Structure

AccountCapabilityData schema from Adyen API

Type: object Properties: 8 Required: 2
PaymentsFinancial ServicesFintech

AccountCapabilityData is a JSON Structure definition published by Adyen, describing 8 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

allowed allowedLevel capability problems requested requestedLevel verificationDeadline verificationStatus

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/management-webhooks-account-capability-data-structure.json",
  "description": "AccountCapabilityData schema from Adyen API",
  "type": "object",
  "properties": {
    "allowed": {
      "description": "Indicates whether the capability is allowed. Adyen sets this to **true** if the verification is successful.",
      "type": "boolean"
    },
    "allowedLevel": {
      "description": "The allowed level of the capability. Some capabilities have different levels which correspond to thresholds. Higher levels may require additional checks and increased monitoring.Possible values: **notApplicable**, **low**, **medium**, **high**.",
      "type": "string"
    },
    "capability": {
      "description": "The name of the capability. For example, **sendToTransferInstrument**.",
      "type": "string"
    },
    "problems": {
      "description": "List of entities that has problems with verification. The information includes the details of the errors and the actions that you can take to resolve them.",
      "items": {
        "$ref": "#/components/schemas/CapabilityProblem"
      },
      "type": "array"
    },
    "requested": {
      "description": "Indicates whether you requested the capability.",
      "type": "boolean"
    },
    "requestedLevel": {
      "description": "The level that you requested for the capability. Some capabilities have different levels which correspond to thresholds. Higher levels may require additional checks and increased monitoring.Possible values: **notApplicable**, **low**, **medium**, **high**.",
      "type": "string"
    },
    "verificationDeadline": {
      "description": "The verification deadline for the capability that will be disallowed if verification errors are not resolved.",
      "type": "datetime"
    },
    "verificationStatus": {
      "description": "The status of the verification checks for the capability.\n\nPossible values:\n\n* **pending**: Adyen is running the verification.\n\n* **invalid**: The verification failed. Check if the `errors` array contains more information.\n\n* **valid**: The verification was successful.\n\n* **rejected**: Adyen checked the information and found reasons to not allow the capability.\n",
      "type": "string"
    }
  },
  "required": [
    "requestedLevel",
    "requested"
  ],
  "name": "AccountCapabilityData"
}