Skip to main content
POST
/
psp-balance-transactions
List Stripe Balance Transactions
curl --request POST \
  --url https://nestvet.com/api/1.1/wf/psp-balance-transactions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Stripe-Account: <stripe-account>' \
  --data '
{
  "organization": "<string>",
  "limit": 123,
  "offset": 123,
  "starting_after": "<string>",
  "created_since": 123,
  "payout_id": "<string>"
}
'
{
  "data": [
    {
      "id": "txn_1SKUFrQ2tZJqmmPddXbdWOuD",
      "object": "balance_transaction",
      "amount": -14614,
      "available_on": 123,
      "balance_type": "payments",
      "created": 123,
      "currency": "usd",
      "description": "STRIPE PAYOUT",
      "exchange_rate": 123,
      "fee": 123,
      "fee_details": [
        {}
      ],
      "net": -14614,
      "reporting_category": "payout",
      "source": "po_1SKUFqQ2tZJqmmPd0jPqc6n1",
      "status": "available",
      "type": "payout"
    }
  ],
  "has_more": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.nest.vet/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Headers

Stripe-Account
string
required

The connected Stripe account ID to scope this request to (e.g. acct_xxx).

Body

application/json
organization
string
required
limit
integer<int32>
required
offset
integer<int32>
required
starting_after
string

Stripe pagination cursor — return results after this object ID.

created_since
integer<int64>

Unix timestamp; return only transactions created on or after this time.

payout_id
string

Filter to balance transactions associated with the given payout ID.

Response

200 - application/json

Stripe balance transactions response

data
object[]
has_more
boolean