cURL
curl --request GET \ --url https://api.sandbox.saalal.com/v1/business/operations \ --header 'Authorization: Bearer <token>'
{ "message": "OK", "statusCode": 200, "data": [ { "amount": 2000, "fees": 0, "description": "YOUR_BANK_NAME", "type": "account_transfer", "kind": "float_debit", "bank_name": "YOUR_BANK_NAME", "bank_id": "XX08XX0100163110648500003035", "bank_account_name": "YOUR_BANK_ACCOUNT_NAME", "status": "pending", "created_at": "2023-06-22T10:40:17.000000Z" } ], "meta": { "current_page": 1, "from": 1, "last_page": 1, "per_page": 20, "to": 17, "total": 17 } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
OK
The response is of type object.
object