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": "#/components/schemas/PerformVerificationRequest",
"title": "PerformVerificationRequest",
"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"
],
"type": "object"
}