Singapay Home Page
Logo Icon
  1. Disbursement
  2. List

Information

MethodPathFormatAuthentication
GET/api/v1.0/disbursement/{account_id}jsonOAuth 2.0 with Access Token

Request Details

Headers Structure

FieldValueTypeMandatoryLengthDescriptionExample
X-PARTNER-IDapi_keyAlphanumericMandatoryAPI key obtained from the merchant dashboard.b3ed7d4b-a96c-6c08-b3c7-12c3124242d9
Acceptapplication/jsonAlphabeticMandatorySpecifies JSON as the expected response format.application/json
AuthorizationBearer {bearerToken}AlphanumericMandatoryBearer token obtained from the get access token endpoint.Bearer eyJ0eXAiOiJKV1{…}

Response Details

Response Structure

FieldTypeMandatoryLengthDescriptionExample
statusNumericMandatory3HTTP Status Code200
successBooleanMandatory-true for success, false for failure.true
dataArray ObjectConditional---
> transaction_idStringMandatory-Transaction id1312220251024134833219
> statusAlphabeticMandatory-Transaction status. Value will be success, failed, pendingsuccess
> bankObject----
>> codeAlphabeticMandatory-Bank code like BRI, BNI, DANAMONBRI
>> account_numberStringMandatory-Beneficiary Bank account number7623781263816
>> account_nameAlphabeticMandatory-Beneficiary Bank account nameCengkal Marpaung
> gross_amountObjectMandatory-The total amount before any fees are deducted.-
>> valueStringMandatory-Transaction amount50000.00
>> currencyAlphabeticMandatory3Currency code (ISO 4217)IDR
> feeObjectMandatory-Fee details for the transaction.-
>> nameAlphabeticMandatory-Transaction fee nameTransfer Fee
>> valueStringMandatory-Transaction fee amount3000
>> currencyAlphabeticMandatory3Currency code (ISO 4217)IDR
> net_amountObjectMandatory-The amount received by the beneficiary after fees.-
>> valueStringMandatory-Net transaction amount47000.00
>> currencyAlphabeticMandatory3Currency code (ISO 4217)IDR
> post_timestampStringMandatory-Date requested (Unix timestamp in milliseconds)1761288513000
> processed_timestampStringMandatory-Date finished (Unix timestamp in milliseconds)1761288513000
> balance_afterObjectMandatory-The remaining balance in the account after transaction.-
>> valueStringMandatory-Balance amount56000.00
>> currencyAlphabeticMandatory3Currency code (ISO 4217)IDR
> notesStringConditional-Additional notes for the transaction. Can be null.from Travelan
paginationObjectConditional---
> countNumericMandatory-Data quantity2
> totalNumericMandatory-Total of all data100
> perPageNumericMandatory-Total data per page10
> currentPageNumericMandatory-Current page1
> totalPagesNumericMandatory-Total page3
> linksObjectMandatory-Next or previous links-

Response Example

Success: Here’s an example of a successful response.

{
    "status": 200,
    "success": true,
    "data": [
        {
            "transaction_id": "1312220251024134833219",
            "status": "success",
            "bank": {
                "code": "Maybank",
                "account_name": "Cengkal Marpaung",
                "account_number": "7623781263816"
            },
            "gross_amount": {
                "currency": "IDR",
                "value": "50000.00"
            },
            "fee": {
                "name": "Transfer Fee",
                "value": "3000",
                "currency": "IDR"
            },
            "net_amount": {
                "currency": "IDR",
                "value": "47000.00"
            },
            "post_timestamp": "1761288513000",
            "processed_timestamp": "1761288513000",
            "balance_after": {
                "value": "56000.00",
                "currency": "IDR"
            },
            "notes": "from Travelan"
        },
        {
            "transaction_id": "1312220251009154707246",
            "status": "success",
            "bank": {
                "code": "BRI",
                "account_name": "Fa Simbolon Anggraini (Persero) Tbk",
                "account_number": "12393021903131"
            },
            "gross_amount": {
                "currency": "IDR",
                "value": "100000.00"
            },
            "fee": {
                "name": "Transfer Fee",
                "value": "3000",
                "currency": "IDR"
            },
            "net_amount": {
                "currency": "IDR",
                "value": "97000.00"
            },
            "post_timestamp": "1759999627000",
            "processed_timestamp": "1759999627000",
            "balance_after": {
                "value": "103000.00",
                "currency": "IDR"
            },
            "notes": null
        }
    ],
    "pagination": {
        "count": 2,
        "total": 2,
        "perPage": 25,
        "currentPage": 1,
        "totalPages": 1,
        "links": {}
    }
}