Core Resources
Banking Api
Energy Api
Common api
The Direct Debits API returns the debit details for an account.
Direct Debit Endpoints
Retrieve direct debit object.
A list of direct debits the end user has set up
Links to be used for pagination
{
"direct_debits": [
{
"account_id": "123456789",
"arrangement_id": "90bfd779-e8eb-4e9f-87b3-5191ba7332c2",
"authorised_entity": {
"abn": "12345678901",
"acn": "123456789",
"arbn": "123456789",
"description": "Payment for utilities",
"financial_institution": "Bank of Example"
},
"fiskil_id": "bank_dd_12345abcdef",
"institution_id": "40",
"last_debit_amount": "100.00",
"last_debit_date_time": "2024-09-10T15:30:00Z"
}
],
"links": {
"next": "https://api.fiskil.com/v1/accounts?page[after]=x",
"prev": "https://api.fiskil.com/v1/accounts?page[before]=x"
}
}
/v1/banking/acccounts/direct-debits
Gets direct debits for a specific account.
A unique identifier for the End User object.
When the page[before] is specified, backwards pagination is achieved
When the page[after] is specified, forwards pagination is achieved
When the page[size] is specified, no more than page[size] resources will be included in the response's data field. This parameter is set to a sensible default, which varies depending on the endpoint.
curl --request GET \
--url https://api.fiskil.com/v1/v1/banking/acccounts/direct-debits?end_user_id={end_user_id}&page[before]={page[before]}&page[after]={page[after]}&page[size]={page[size]} \
--header 'Authorization: Bearer {access_token}' \
--header 'accept: application/json; charset=UTF-8' \
--header 'content-type: application/json; charset=UTF-8'
{
"direct_debits": [
{
"account_id": "123456789",
"arrangement_id": "90bfd779-e8eb-4e9f-87b3-5191ba7332c2",
"authorised_entity": {
"abn": "12345678901",
"acn": "123456789",
"arbn": "123456789",
"description": "Payment for utilities",
"financial_institution": "Bank of Example"
},
"fiskil_id": "bank_dd_12345abcdef",
"institution_id": "40",
"last_debit_amount": "100.00",
"last_debit_date_time": "2024-09-10T15:30:00Z"
}
],
"links": {
"next": "https://api.fiskil.com/v1/accounts?page[after]=x",
"prev": "https://api.fiskil.com/v1/accounts?page[before]=x"
}
}
Was this page helpful?