Adyen · JSON Structure

Accounts Perform Verification Request Structure

PerformVerificationRequest schema from Adyen API

Type: object Properties: 3 Required: 3
PaymentsFinancial ServicesFintech

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

Properties

accountHolderCode accountStateType tier

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/accounts-perform-verification-request-structure.json",
  "description": "PerformVerificationRequest schema from Adyen API",
  "type": "object",
  "properties": {
    "accountHolderCode": {
      "description": "The code of the account holder to verify.",
      "type": "string"
    },
    "accountStateType": {
      "description": "The state required for the account holder.\n> Permitted values: `Processing`, `Payout`.",
      "enum": [
        "LimitedPayout",
        "LimitedProcessing",
        "LimitlessPayout",
        "LimitlessProcessing",
        "Payout",
        "Processing"
      ],
      "type": "string"
    },
    "tier": {
      "description": "The tier required for the account holder.",
      "type": "int32"
    }
  },
  "required": [
    "accountHolderCode",
    "accountStateType",
    "tier"
  ],
  "name": "PerformVerificationRequest"
}