Properties
| Name | Type | Description |
|---|---|---|
| country | string | The country of the receiving account. |
| name_account_holder | string | The name of the account holder. |
| type | string | The chosen recipient account type. The possible options are provided dynamically in the response endpoint. |
| detail | array | The fields which were specified as "required" and have since been filled by the user. Always provide the full list. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TransferwiseAccountRequirement",
"title": "TransferwiseAccountRequirement",
"type": "object",
"properties": {
"country": {
"type": "string",
"description": "The country of the receiving account.",
"readOnly": false,
"writeOnly": true
},
"name_account_holder": {
"type": "string",
"description": "The name of the account holder.",
"readOnly": false,
"writeOnly": true
},
"type": {
"type": "string",
"description": "The chosen recipient account type. The possible options are provided dynamically in the response endpoint.",
"readOnly": false,
"writeOnly": false
},
"detail": {
"type": "array",
"description": "The fields which were specified as \"required\" and have since been filled by the user. Always provide the full list.",
"readOnly": false,
"writeOnly": true,
"items": {
"$ref": "#/components/schemas/TransferwiseRequirementField"
}
}
},
"required": [
"name_account_holder",
"type"
]
}