curl --location --request GET '/points/customers/cust_abc123def456/transactions?page=1&limit=20' \
--header 'Authorization: Bearer <token>'{
"status": true,
"message": "Transactions retrieved successfully",
"data": [
{
"id": 1284,
"merchant_id": "merch_xyz789",
"customer_uid": "cust_abc123def456",
"amount": 50,
"transaction_type": "member_points_adjustment_credit",
"reference_id": "credit_a1b2c3d4-e5f6-7890",
"title": "Points Credit",
"narration": "Credited 50 points for purchase #12345",
"balance_after": 1550,
"created_at": "2026-02-20T14:30:00.000Z"
}
],
"pagination": {
"page": 1,
"limit": 50,
"total": 150,
"total_pages": 3
}
}