Get Brand Wallet Transaction History
GET
/payment-option/wallet/customer/{customer_id}/historyRetrieves wallet transaction history for a customer with optional filters by date range, page, and transaction type.
Requires
Bearer token. Get token →Path Parameters
| Name | Type | Description |
|---|---|---|
customer_id | stringrequired | Unique customer identifier (e.g. cust-v1-...). |
Query Parameters
| Name | Type | Description |
|---|---|---|
start_date | stringrequired | Start date for the history range. |
end_date | stringrequired | End date for the history range. |
page | integer | Page number for pagination (defaults to 1). |
transaction_type | string[] | Filter by transaction type(s). Can be repeated for multiple types. |
Response
| Name | Type | Description |
|---|---|---|
data | object | |
transactions | BrandWalletTransactionHistory[] |
Status Codes
200 | Transaction history retrieved. |
400 | |
401 | |
500 |
Request
curl --request GET \
--url 'https://pluraluat.v2.pinepg.in/payment-option/wallet/customer/cust-bw-001/history?start_date=2026-01-01&end_date=2026-01-31' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN'Run this request
customer_idstart_dateend_datepagetransaction_type200 OK
{
"data": {
"transactions": []
}
}