GET
/
v1
/
balance_transactions
List Balance Transactions
curl --request GET \
  --url https://api.withflex.com/v1/balance_transactions \
  --header 'Authorization: Bearer <token>'
{
  "balance_transactions": [
    {
      "balance_transaction_id": "<string>",
      "amount": 123,
      "available_on": "<string>",
      "created_at": "<string>",
      "exchange_rate": 123,
      "fee": 123,
      "net": 123,
      "reporting_category": "<string>",
      "checkout_session_id": "<string>",
      "status": "available",
      "source_id": "<string>",
      "type": "<string>",
      "test_mode": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Use a Bearer token to access this API.

Query Parameters

balance_transaction_id
string | null
payout_id
string | null
starting_after
string | null
ending_before
string | null
limit
integer | null
Required range: x >= 1

Response

200
application/json

The response is of type object.