
Statement
This endpoint allows you to retrieve the details of a specific transaction by its ID.
| Method | Path | Format | Authentication |
|---|---|---|---|
| GET | /api/v1.0/statements/{account_id}/{statement_id} | json | OAuth 2.0 with Access Token |
| Field | Value | Type | Mandatory | Length | Description | Example |
|---|---|---|---|---|---|---|
| X-PARTNER-ID | api_key | Alphanumeric | Mandatory | API key obtained from the merchant dashboard. | b3ed7d4b-a96c-6c08-b3c7-12c3124242d9 | |
| Accept | application/json | Alphabetic | Mandatory | Specifies JSON as the expected response format. | application/json | |
| Authorization | Bearer {bearerToken} | Alphanumeric | Mandatory | Bearer token obtained from the get access token endpoint. | Bearer eyJ0eXAiOiJKV1{…} |
| Field | Type | Mandatory | Length | Description | Example |
|---|---|---|---|---|---|
| status | Numeric | Mandatory | 3 | HTTP Status Code. | 200 |
| success | Boolean | Mandatory | 1 | Indicates successful request. | true |
| data | Object | Mandatory | - | Object containing the single balance mutation record. | - |
| > transaction_id | Alphanumeric | Mandatory | - | Unique ID for the balance transaction/mutation record. | 6601K3GDEQVPHBBP4GRYQADG0KXT |
| > merchant_reff_no | Alphanumeric or null | Optional | - | Your custom reference from the related transaction (e.g. merchant_reff_no or payment reference on the underlying channel). Present when the source transaction had a value; otherwise null. | INV-2026-0042 |
| > type | Alphabetic | Mandatory | - | The type of ledger movement (credit or debit). | credit |
| > kind | Alphabetic | Mandatory | - | The nature or category of the transaction (e.g., disbursement). | disbursement |
| > balance_after | Object | Mandatory | - | The balance of the account after this transaction. | - |
| >> value | String/Numeric | Mandatory | - | The numeric value of the balance. | 52000.00 |
| >> currency | Alphabetic | Mandatory | 3 | The currency code (e.g., IDR). | IDR |
| > debit | Object | Mandatory | - | The amount debited from the balance. | - |
| >> value | String/Numeric | Mandatory | - | The numeric value of the debit. | 0.00 |
| >> currency | Alphabetic | Mandatory | 3 | The currency code. | IDR |
| > credit | Object | Mandatory | - | The amount credited to the balance. | - |
| >> value | String/Numeric | Mandatory | - | The numeric value of the credit. | 52000.00 |
| >> currency | Alphabetic | Mandatory | 3 | The currency code. | IDR |
| > processed_timestamp | String/Numeric | Mandatory | - | Timestamp when the transaction was processed (in milliseconds). | 1756119787000 |
Success: Here’s an example of a successful response.
{
"status": 200,
"success": true,
"data": {
"transaction_id": "6601K3GDEQVPHBBP4GRYQADG0KXT",
"merchant_reff_no": "INV-2026-0042",
"type": "credit",
"kind": "disbursement",
"balance_after": {
"value": "52000.00",
"currency": "IDR"
},
"debit": {
"value": "0.00",
"currency": "IDR"
},
"credit": {
"value": "52000.00",
"currency": "IDR"
},
"processed_timestamp": "1756119787000"
}
}