Skip to main content
GET
/
api
/
v1.0
/
ewallet-native-transactions
/
{account_id}
List transactions
curl --request GET \
  --url https://sandbox-payment-b2b.singapay.id/api/v1.0/ewallet-native-transactions/{account_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-PARTNER-ID: <api-key>'
{
  "status": 200,
  "success": true,
  "data": [
    {
      "id": 2001,
      "account_id": 42,
      "reff_no": "EW20260402001",
      "merchant_reff_no": "INV-2026-001",
      "status": "open",
      "status_computed": "open",
      "is_expired": false,
      "ewallet_vendor": "EWALLET_DANA",
      "amount": 100000,
      "total_amount": 100000,
      "merchant_fee": 1500,
      "net_amount": 98500,
      "checkout_url": "https://checkout.example.com/pay/abc123",
      "checkout_url_app": "dana://checkout/abc123",
      "vendor_reference_no": "DANA-REF-987654",
      "merchant_redirect_url": "https://merchant.example.com/payment/return",
      "additional_info": null,
      "customer_name": "John Doe",
      "customer_email": "john.doe@example.com",
      "customer_phone": "081234567890",
      "has_recon": false,
      "recon_at": null,
      "has_settle": false,
      "settle_at": null,
      "has_settle_request": false,
      "settle_request_at": null,
      "payment_channel": null,
      "payment_vendor_code": null,
      "settlement_method": null,
      "processed_timestamp": null,
      "expired_at": "2026-04-02T23:59:59+07:00",
      "created_at": "2026-04-02T10:30:00+07:00",
      "updated_at": "2026-04-02T10:30:00+07:00",
      "deleted_at": null,
      "events_count": 1
    }
  ],
  "meta": {
    "pagination": {
      "total": 42,
      "count": 1,
      "per_page": 25,
      "current_page": 1,
      "total_pages": 2
    }
  }
}

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

Account identifier in ULID format.

Response

Success

status
integer
required

HTTP status code.

Example:

200

success
boolean
required

Indicates whether the request was successful.

Example:

true

data
object[]
required

Collection of e-wallet transaction resources.

meta
object

Pagination metadata for the collection response.

Example:
{
"pagination": {
"total": 42,
"count": 1,
"per_page": 25,
"current_page": 1,
"total_pages": 2
}
}