All virtual bank accounts related paths
/account_groups/{account_group_id}/payments/virtual_bank_accounts
Returns a list of virtual bank accounts.
sort
string
Field of resource to sort by
order
string
Sort order of the result list if the sort
parameter is specified. Use ASC
for ascending or DESC
for descending sort order.
limit
int
Use the limit
argument to specify the maximum number of items returned.
offset
int
Use 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_accounts
Triggers the creation of a virtual bank account.
account_group_id
string
required
Account group unique identifier.
name
string
required
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_id
string
required
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"
}
}
}
id
string
required
Event unique identifier
created_at
string
required
Date and time when the event was created. RFC 3339-5, ISO8601 UTC
type
string
required
Event type
object
object
required
id
string
required
Virtual bank account request unique identifier.
created_at
string
required
Date and time when the resource was created. RFC 3339-5, ISO8601 UTC
account_group_id
string
required
Account group unique identifier.
name
string
Name of the virtual bank account
owner
object
required
Owner of the virtual bank account
identification
object
required
Identification details
webhook_id
string
required
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?