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
Documentation IndexFetch the complete documentation index at: https://docs-mstore.faisalaffan.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs-mstore.faisalaffan.com/llms.txt
Use this file to discover all available pages before exploring further.
JWT Bearer token authentication
Transactions list
Show child attributes
Was this page helpful?