Adyen · Schema
PerformVerificationRequest
PerformVerificationRequest schema from Adyen API
PaymentsFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| accountHolderCode | string | The code of the account holder to verify. |
| accountStateType | string | The state required for the account holder. > Permitted values: `Processing`, `Payout`. |
| tier | integer | The tier required for the account holder. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/accounts-perform-verification-request-schema.json",
"title": "PerformVerificationRequest",
"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.",
"format": "int32",
"type": "integer"
}
},
"required": [
"accountHolderCode",
"accountStateType",
"tier"
]
}