Get all disbursements
Use this endpoint to get the list of transaction you’ve made. By default, the result will be paginated by 20. You can change the pagination, filter, and sort the result by changing the url parameter.
GET
https://us-central1-appgregator.cloudfunctions.net/flipSandbox/disbursement/
Query Parameters
Name
Type
Description
name*
String
ft-4
connection_name*
String
flip-entre-1
pagination*
Number
20
page*
Number
1
sort*
String
timestamp
Headers
Name
Type
Description
x-api-key
String
U2FsdGVk..
{
"total_data": 2,
"data_per_page": 2,
"total_page": 1,
"page": 1,
"data": [
{
"id": 42615,
"user_id": 423304,
"amount": 10000,
"status": "PENDING",
"reason": "",
"timestamp": "2022-07-22 16:56:06",
"bank_code": "bca",
"account_number": "4210343721",
"recipient_name": "Dummy Name",
"sender_bank": "bca",
"remark": "testing",
"receipt": "",
"time_served": "(not set)",
"bundle_id": 0,
"company_id": 5770,
"recipient_city": 391,
"created_from": "API",
"direction": "DOMESTIC_TRANSFER",
"sender": null,
"fee": 4000,
"beneficiary_email": "testing@gmail.com",
"idempotency_key": "$2y$13$JYsyd5topdcygXD0tIjBUezkiv4ORmi7eC3pBTwP.oYdAfeMGn2ma"
},
{
"id": 42613,
"user_id": 423304,
"amount": 10000,
"status": "PENDING",
"reason": "",
"timestamp": "2022-07-22 16:44:36",
"bank_code": "bca",
"account_number": "5465327020",
"recipient_name": "",
"sender_bank": "bca",
"remark": "some remark",
"receipt": "",
"time_served": "(not set)",
"bundle_id": 0,
"company_id": 5770,
"recipient_city": 391,
"created_from": "API",
"direction": "DOMESTIC_TRANSFER",
"sender": null,
"fee": 4000,
"beneficiary_email": "test@mail.com,user@mail.com",
"idempotency_key": "JYsyd5topdcygXD0tIjBUezkiv4ORmi7eC3pBTwP"
}
]
}
curl --location --request GET 'https://us-central1-appgregator.cloudfunctions.net/flipSandbox/disbursement?name=ft-4&connection_name=flip-entre-1&pagination=20&page=1&sort=timestamp' \
--header 'x-api-key: U2Fsd...'
Last updated