A connected account is a bank account managed through Numeral.
Attribute | Description |
---|---|
id string | The ID of the connected account. |
type string | The type of the connected account, either financial_institution or corporate . |
name string | The name of the connected account. |
bic string | The BIC of the connected account. |
account_number string | The account number of the connected account. |
bank_id string | The bank's identifier |
services_activated array[object] | The services activated for the connected account. |
metadata object | Additional data in JSON key:value format. See Metadata. |
disabled_at nullable datetime | The UTC timestamp at which this connected account has been disabled. |
created_at datetime | The UTC timestamp of the creation of this connected account. |
Below is an example of a connected_account
:
{
"id": "634f662d-44f3-4b56-b823-a1442d5beb69",
"type": "corporate",
"name": "BNP Paribas TechCo account",
"bic": "BNPAFRPPXXX",
"account_number": "FR1420041010050500013M02606",
"bank_id": "22222222-1111-0000-0000-000000000001",
"services_activated": [
{
"id": "5255a794-fa9d-4e5e-be51-500884bd61e4",
"name": "sct",
"cron_exp": "@every 30s",
"timeout_in_seconds": 0,
"created_at": "2022-06-17T08:49:54.54422Z"
}
],
"metadata": {
"key_one": "value",
"key_two": 24
},
"disabled_at": null,
"created_at": "2022-06-19T23:19:06.447Z"
}