Skip to main content
GET
/
v3
/
teams
/
{team}
/
payouts
List Payouts
curl --request GET \
  --url https://app.plugchoice.com/api/v3/teams/{team}/payouts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "type": "<string>",
      "amount": 123,
      "kickback_amount": 123,
      "kickback_percentage": 123,
      "currency": "<string>",
      "status": "<string>",
      "paid_at": "<string>",
      "created_at": "<string>"
    }
  ]
}
Returns a paginated list of payouts for the team’s partner account, ordered by most recent first.
team
string
required
The UUID of the team.
page
integer
Page number for pagination.

Response

data
array
Array of payout objects.