Properties
| Name | Type | Description |
|---|---|---|
| name | stringnull | Name of the person or company |
| account_number | stringnull | Account number |
| agent_name | stringnull | Name of the financial institution |
| agent_id | stringnull | Routing number or BIC of the financial institution |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/wire_party_details",
"title": "Wire Party Details",
"type": "object",
"properties": {
"name": {
"type": [
"string",
"null"
],
"description": "Name of the person or company"
},
"account_number": {
"type": [
"string",
"null"
],
"description": "Account number"
},
"agent_name": {
"type": [
"string",
"null"
],
"description": "Name of the financial institution"
},
"agent_id": {
"type": [
"string",
"null"
],
"description": "Routing number or BIC of the financial institution"
}
},
"required": []
}