REST API
cURL
curl --request GET \ --url http://localhost:3002/api/v1/transactions \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": [ { "id": "trx_123", "transaction_code": "TRX-20240101-001", "total_amount": 250000, "status": "completed", "payment_method": "cash", "created_at": "2023-11-07T05:31:56Z" } ], "meta": { "page": 1, "limit": 20, "total": 150, "total_pages": 8 } }
Get list of transactions
JWT Bearer token authentication
Transactions list
Show child attributes
Was this page helpful?