Skip to main content
GET
/
api
/
v1.0
/
disbursement
/
{account_id}
List
curl --request GET \
  --url https://sandbox-payment-b2b.singapay.id/api/v1.0/disbursement/{account_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-PARTNER-ID: <api-key>'
{
  "status": 200,
  "success": true,
  "data": {
    "transaction_id": "331222025121209092460774035",
    "reference_number": "1134567891011",
    "status": "success",
    "bank": {
      "code": "BRI",
      "account_name": "John Doe",
      "account_number": "1234567890000"
    },
    "gross_amount": {
      "currency": "IDR",
      "value": "51000.00"
    },
    "fee": {
      "name": "Transfer Fee",
      "value": "1000.00",
      "currency": "IDR"
    },
    "net_amount": {
      "currency": "IDR",
      "value": "50000.00"
    },
    "post_timestamp": "1765505364000",
    "processed_timestamp": "1765505365000",
    "balance_after": {
      "value": "1000000.00",
      "currency": "IDR"
    },
    "notes": "Transfer payment"
  },
  "pagination": {}
}

Authorizations

Authorization
string
header
required

JWT issued by POST /api/v1.1/access-token/b2b. Send Authorization: Bearer <token>.

X-PARTNER-ID
string
header
required

Merchant API key (Credential.api_key). Required on every request.

Path Parameters

account_id
string
required

Unique identifier (ULID) of the merchant account that owns the disbursements. Must belong to the authenticated merchant.

Response

Success. The data array contains disbursement records; meta includes pagination details when more than one page exists.

Standard success response envelope for disbursement API v1.0 endpoints (list, show, check fee, check beneficiary, and transfer).

status
integer

HTTP status code echoed in the response body.

Example:

200

success
boolean

Indicates whether the request completed successfully.

Example:

true

data
object

Response payload. A single object for detail endpoints, or an array of disbursement records for list. Field shapes match the documented resource schemas.

pagination
object | null

Pagination metadata when listing disbursements (for example current page, per page, and total count). Omitted when data is a single object.