Skip to main content
GET
/
v1
/
payout_groups
List
curl --request GET \
  --url https://{defaultHost}/v1/payout_groups \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/payout_groups"
  },
  "data": [
    {
      "id": "62e7d3e4-c9c5-49d7-9c6f-9b37374bd5bc",
      "object": "payout_group",
      "currency": "usd",
      "end_date": 1767571200,
      "live_mode": true,
      "min_commission_amount": null,
      "created_at": 1767909730,
      "updated_at": 1767909730
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

currency
string

Three-letter ISO currency code, in lowercase.

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.