Balance Transactions

Balance transactions are the reflection of any movement of funds that affects the balance of an account. Oftentimes, a single financial transaction (like a payment) will result in the creation of many balance transactions in order to document the flow of funds between multiple accounts. Other financial transactions that result in balance transactions include refunds, disputes, and payouts.

List Balance Transactions

List the balance transactions for your account. This endpoint supports pagination.

Request
query Parameters
payout_id
string

Filter records which are part of the payout with the specified id

Example: payout_id=po_s6c3kyfAmEQRFyGJqyyPl
header Parameters
Authorization
required
string

the access_token value returned from the JustiFi oauth/token endpoint (be sure to append Bearer before the token)

Example: Bearer {access_token}
Responses
200

Successfully list balance transactions

get/balance_transactions
Request samples
Response samples
application/json
{
  • "id": 1,
  • "type": "array",
  • "data": [
    ],
  • "page_info": {
    }
}

Get a Balance Transaction

Get information about a balance transaction.

Request
path Parameters
id
required
string <uuid>
header Parameters
Authorization
required
string

the access_token value returned from the JustiFi oauth/token endpoint (be sure to append Bearer before the token)

Example: Bearer {access_token}
Responses
200

Successfully get a balance transaction

get/balance_transactions/{id}
Request samples
Response samples
application/json
{
  • "id": 1,
  • "type": "balance_transaction",
  • "data": {
    },
  • "page_info": "string"
}