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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Accept
string

Query Parameters

page
integer
per_page
integer

Response

200 - application/json
OK
message
string
Example:

"OK"

statusCode
integer
Example:

200

data
object[]
meta
object