All virtual bank accounts related paths
/account_groups/{account_group_id}/payments/virtual_bank_accountsReturns a list of virtual bank accounts.
sortstringField of resource to sort by
orderstringSort order of the result list if the sort parameter is specified. Use ASC for ascending or DESC for descending sort order.
limitintUse the limit argument to specify the maximum number of items returned.
offsetintUse the offset argument to specify where in the list of results to start when returning items for a particular query.
List of virtual bank accounts.
{
"meta": {
"offset": 0,
"limit": 100,
"count": 1,
"total_count": 1,
"sort": "id",
"order": "ASC"
},
"data": [
{
"id": "22913092-0484-42e9-9273-9ffd6dfd0b13",
"created_at": "2021-07-21T14:10:00.00Z",
"account_group_id": "d1354aad-6da7-4da7-aaa1-e00ebfd3240d",
"name": "Max's Virtual Bank Account",
"owner": {
"name": "Max Musterman"
},
"identification": {
"swift": {
"iban": "DE89000000000000000000",
"bic": "ABCDEXXX"
}
}
}
]
}/payments/virtual_bank_accountsTriggers the creation of a virtual bank account.
account_group_idstringrequired
Account group unique identifier.
namestringrequired
Name of the virtual bank account
{
"account_group_id": "f874a64a-ceaa-42b2-b59a-39d4f62166fb",
"name": "Max's Virtual Bank Account"
}Virtual Bank Account created.
{
"id": "22913092-0484-42e9-9273-9ffd6dfd0b13",
"created_at": "2021-07-21T14:10:00.00Z",
"account_group_id": "d1354aad-6da7-4da7-aaa1-e00ebfd3240d",
"name": "Max's Virtual Bank Account",
"owner": {
"name": "Max Musterman"
},
"identification": {
"swift": {
"iban": "DE89000000000000000000",
"bic": "ABCDEXXX"
}
}
}/payments/virtual_bank_accounts/{virtual_bank_account_id}Returns a virtual bank account specified by its ID.
virtual_bank_account_idstringrequired
Virtual bank account request unique identifier.
OK.
{
"id": "22913092-0484-42e9-9273-9ffd6dfd0b13",
"created_at": "2021-07-21T14:10:00.00Z",
"account_group_id": "d1354aad-6da7-4da7-aaa1-e00ebfd3240d",
"name": "Max's Virtual Bank Account",
"owner": {
"name": "Max Musterman"
},
"identification": {
"swift": {
"iban": "DE89000000000000000000",
"bic": "ABCDEXXX"
}
}
}idstringrequired
Event unique identifier
created_atstringrequired
Date and time when the event was created. RFC 3339-5, ISO8601 UTC
typestringrequired
Event type
objectobjectrequired
idstringrequired
Virtual bank account request unique identifier.
created_atstringrequired
Date and time when the resource was created. RFC 3339-5, ISO8601 UTC
account_group_idstringrequired
Account group unique identifier.
namestringName of the virtual bank account
ownerobjectrequired
Owner of the virtual bank account
identificationobjectrequired
Identification details
webhook_idstringrequired
Webhook unique identifier.
{
"id": "8962b496-8d42-4560-bfab-10490dd1a721",
"created_at": "2021-07-21T14:10:00.00Z",
"type": "VIRTUAL_BANK_ACCOUNT.CREATED",
"object": {
"id": "22913092-0484-42e9-9273-9ffd6dfd0b13",
"created_at": "2021-07-21T14:10:00.00Z",
"account_group_id": "d1354aad-6da7-4da7-aaa1-e00ebfd3240d",
"name": "Max's Virtual Bank Account",
"owner": {
"name": "Max Musterman"
},
"identification": {
"swift": {
"iban": "DE89000000000000000000",
"bic": "ABCDEXXX"
}
}
},
"webhook_id": "9df39835-be87-4243-9018-f2500b39cee6"
}Request has been processed successfully.
Empty response
Was this page helpful?