Account
Get operations
API Documentation
Business
- Account
- Disburse
- Payment
Cards
Transactions
Miscellaneous
Account
Get operations
GET
/
business
/
operations
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
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
Response
200 - application/json
OK
Example:
"OK"
Example:
200
Example:
2000
Example:
0
Example:
"YOUR_BANK_NAME"
Example:
"account_transfer"
Example:
"float_debit"
Example:
"YOUR_BANK_NAME"
Example:
"XX08XX0100163110648500003035"
Example:
"YOUR_BANK_ACCOUNT_NAME"
Example:
"pending"
Example:
"2023-06-22T10:40:17.000000Z"
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
}
}