All credit fundings related paths
/account_groups/{account_group_id}/payments/credit_funding_details
Retrieve funding details
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.
Funding Details
{
"meta": {
"offset": 0,
"limit": 100,
"count": 1,
"total_count": 1,
"sort": "created_at",
"order": "ASC"
},
"data": [
{
"virtual_bank_account_id": "4e127ac5-dae3-487e-b76b-fef7225a8b80",
"name": "Max's Virtual Bank Account",
"currency": "EUR",
"owner": {
"name": "Max Musterman"
},
"identification": {
"swift": {
"iban": "DE02100500000054540402",
"bic": "DEUTDEFFXXX"
}
}
},
{
"virtual_bank_account_id": "a38470db-f54c-4514-ad71-6904a5c2744f",
"name": "Max's Virtual Bank Account",
"currency": "EUR",
"owner": {
"name": "Max Musterman"
},
"identification": {
"swift": {
"iban": "DE02100500000054540403",
"bic": "DEUTDEFFXXX"
}
}
}
]
}
/account_groups/{account_group_id}/payments/credit_fundings
List credit fundings
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.
Credit Funding list
{
"meta": {
"offset": 0,
"limit": 100,
"count": 1,
"total_count": 1,
"sort": "id",
"order": "ASC"
},
"data": [
{
"id": "1ab4fef9-a097-4c6f-9345-647025d5fde6",
"created_at": "2020-08-24T14:15:22Z",
"account_group_id": "1ea60f56-b67b-61fc-829a-0242ac130003",
"cash_amount": "200.00",
"currency": "EUR",
"status": "CONFIRMED",
"remittance_information": "CF123456789",
"counterparty": {
"identification": {
"name": "Max Musterman"
},
"account": {
"identification": {
"iban": "DE02100500000054540402"
}
}
},
"virtual_bank_account_id": "ab8f9b19-6a31-48d3-b201-4dee92f3da0d",
"purpose_code": "OTHR"
}
]
}
/payments/credit_fundings/{credit_funding_id}
Retrieve a credit funding
credit_funding_id
string
required
Credit Funding request unique identifier
Credit Funding payment
{
"id": "1ab4fef9-a097-4c6f-9345-647025d5fde6",
"created_at": "2020-08-24T14:15:22Z",
"account_group_id": "1ea60f56-b67b-61fc-829a-0242ac130003",
"cash_amount": "200.00",
"currency": "EUR",
"status": "CONFIRMED",
"remittance_information": "CF123456789",
"counterparty": {
"identification": {
"name": "Max Musterman"
},
"account": {
"identification": {
"iban": "DE02100500000054540402"
}
}
},
"virtual_bank_account_id": "ab8f9b19-6a31-48d3-b201-4dee92f3da0d",
"purpose_code": "OTHR"
}
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
Credit Funding 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.
cash_amount
string
required
currency
string
required
Alphabetic three-letter ISO 4217 currency code.
status
string
Status of the credit funding
remittance_information
string
required
Payment reference the one that was used by the end user for the corresponding SEPA Credit Transfer
counterparty
object
required
virtual_bank_account_id
string
Virtual bank account request unique identifier.
purpose_code
string
Purpose of the payment based on ExternalPurpose1Code from ISO 20022.
webhook_id
string
required
Webhook unique identifier.
{
"id": "8962b496-8d42-4560-bfab-10490dd1a721",
"created_at": "2021-07-21T14:10:00.00Z",
"type": "CREDIT_FUNDING.CONFIRMED",
"object": {
"id": "1ab4fef9-a097-4c6f-9345-647025d5fde6",
"created_at": "2020-08-24T14:15:22Z",
"account_group_id": "1ea60f56-b67b-61fc-829a-0242ac130003",
"cash_amount": "200.00",
"currency": "EUR",
"status": "CONFIRMED",
"remittance_information": "CF123456789",
"counterparty": {
"identification": {
"name": "Max Musterman"
},
"account": {
"identification": {
"iban": "DE02100500000054540402"
}
}
},
"virtual_bank_account_id": "ab8f9b19-6a31-48d3-b201-4dee92f3da0d",
"purpose_code": "OTHR"
},
"webhook_id": "9df39835-be87-4243-9018-f2500b39cee6"
}
Request has been processed successfully.
Empty response
Was this page helpful?