get Disbursement by Id

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/:id/

Query Parameters

Name
Type
Description

name*

String

ft-4

connection_name*

String

flip-entre-1

Headers

Name
Type
Description

x-api-key

String

U2FsdGVk..

{
    "id": 46952,
    "user_id": 423304,
    "amount": 20000,
    "status": "PENDING",
    "reason": "",
    "timestamp": "2022-09-13 18:00:49",
    "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": "cust-001"
}
curl --location --request GET 'https://us-central1-appgregator.cloudfunctions.net/flipSandbox/disbursement/46952?name=ft-4&connection_name=flip-entre-1' \
--header 'x-api-key: U2Fsd...'

Last updated