Singapay Home Page
Logo Icon
  1. Disbursement
  2. Show

Information

MethodPathFormatAuthentication
GET/api/v1.0/disbursement/{account_id}/{transaction_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
dataObjectConditional-Contains the details of the transaction.-
> transaction_idStringMandatory-Unique identifier for the transaction.1312220251024134833219
> statusAlphabeticMandatory-Transaction status.success
> bankObjectMandatory-Beneficiary bank details.-
>> codeAlphabeticMandatory-Bank code (e.g., BRI, BNI, DANAMON).Maybank
>> account_numberStringMandatory-Beneficiary bank account number.7623781263816
>> account_nameAlphabeticMandatory-Beneficiary bank account name.Cengkal Marpaung
> gross_amountObjectMandatory-The total amount before any fees are deducted.-
>> valueStringMandatory-Transaction amount.50000.00
>> currencyAlphabeticMandatory3Currency codeIDR
> feeObjectMandatory-Fee details for the transaction.-
>> nameAlphabeticMandatory-Name of the transaction fee.Transfer Fee
>> valueStringMandatory-Amount of the transaction fee.3000
>> currencyAlphabeticMandatory3Currency codeIDR
> net_amountObjectMandatory-The amount received by the beneficiary after fees.-
>> valueStringMandatory-Net transaction amount.47000.00
>> currencyAlphabeticMandatory3Currency codeIDR
> post_timestampStringMandatory-Date requested1761288513000
> processed_timestampStringMandatory-Date finished1761288513000
> balance_afterObjectMandatory-The remaining balance in the account after transaction.-
>> valueStringMandatory-Balance amount.56000.00
>> currencyAlphabeticMandatory3Currency codeIDR
> notesStringConditional-Additional notes for the transaction. Can be null.from Travelan

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"
    }
}