Properties
| Name | Type | Description |
|---|---|---|
| accountId | integer | Unique identifier for the account. Endpoints:
|
| reason | string | The reason the account verification failed. Endpoints:
|
| verificationStatus | string | The status of the account verification. Endpoints:
Applicable Values |
| providerAccountId | integer | Unique identifier for the provider account. Endpoints:
|
| verificationType | string | The account verification type. Endpoints:
Applicable Values |
| account | object | |
| remainingAttempts | integer | |
| verificationDate | string | The date of the account verification. Endpoints:
|
| verificationId | integer | Unique identifier for the verification request. Endpoints:
|
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/VerificationStatus",
"title": "VerificationStatus",
"type": "object",
"properties": {
"accountId": {
"type": "integer",
"description": "Unique identifier for the account.<br><br><b>Endpoints</b>:<ul><li>POST verification</li><li>GET verification</li><li>PUT verification</li></ul>",
"format": "int64"
},
"reason": {
"type": "string",
"description": "The reason the account verification failed.<br><br><b>Endpoints</b>:<ul><li>POST verification</li><li>GET verification</li><li>PUT verification</li></ul>",
"readOnly": true,
"enum": [
"DATA_NOT_AVAILABLE",
"ACCOUNT_HOLDER_MISMATCH",
"FULL_ACCOUNT_NUMBER_AND_BANK_TRANSFER_CODE_NOT_AVAILABLE",
"FULL_ACCOUNT_NUMBER_NOT_AVAILABLE",
"BANK_TRANSFER_CODE_NOT_AVAILABLE",
"EXPIRED",
"DATA_MISMATCH",
"INSTRUCTION_GENERATION_ERROR"
]
},
"verificationStatus": {
"type": "string",
"description": "The status of the account verification.<br><br><b>Endpoints</b>:<ul><li>POST verification</li><li>GET verification</li><li>PUT verification</li></ul><br><b>Applicable Values</b>",
"readOnly": true,
"enum": [
"INITIATED",
"DEPOSITED",
"SUCCESS",
"FAILED"
]
},
"providerAccountId": {
"type": "integer",
"description": "Unique identifier for the provider account.<br><br><b>Endpoints</b>:<ul><li>POST verification</li><li>GET verification</li><li>PUT verification</li></ul>",
"format": "int64"
},
"verificationType": {
"type": "string",
"description": "The account verification type.<br><br><b>Endpoints</b>:<ul><li>POST verification</li><li>GET verification</li><li>PUT verification</li></ul><br><b>Applicable Values</b>",
"enum": [
"MATCHING",
"CHALLENGE_DEPOSIT"
]
},
"account": {
"$ref": "#/components/schemas/VerificationAccount"
},
"remainingAttempts": {
"type": "integer",
"format": "int64",
"readOnly": true
},
"verificationDate": {
"type": "string",
"description": "The date of the account verification.<br><br><b>Endpoints</b>:<ul><li>POST verification</li><li>GET verification</li><li>PUT verification</li></ul>",
"readOnly": true
},
"verificationId": {
"type": "integer",
"description": "Unique identifier for the verification request.<br><br><b>Endpoints</b>:<ul><li>POST verification</li><li>GET verification</li><li>PUT verification</li></ul>",
"format": "int64",
"readOnly": true
}
}
}