Skip to main content
GET
/
admin
/
payouts
/
{id}
curl 'http://localhost:9000/admin/payouts/pout_01HXYZ8Q2M4N6P8R0T2V4W6X8Y' \
  -H 'Authorization: Bearer <token>'
{
  "payout": {
    "id": "pout_01HXYZ8Q2M4N6P8R0T2V4W6X8Y",
    "display_id": 42,
    "amount": 1250,
    "currency_code": "usd",
    "status": "completed",
    "data": null,
    "account": { "id": "pacc_01HXYZ", "status": "active" },
    "seller": { "id": "sel_01HXYZ", "name": "Acme Store", "handle": "acme-store" }
  }
}
Returns a single payout with its payout account and seller details.

Path parameters

id
string
required
The payout’s ID.

Query parameters

fields
string
Comma-separated fields to include in the response.

Response

payout
object
curl 'http://localhost:9000/admin/payouts/pout_01HXYZ8Q2M4N6P8R0T2V4W6X8Y' \
  -H 'Authorization: Bearer <token>'
{
  "payout": {
    "id": "pout_01HXYZ8Q2M4N6P8R0T2V4W6X8Y",
    "display_id": 42,
    "amount": 1250,
    "currency_code": "usd",
    "status": "completed",
    "data": null,
    "account": { "id": "pacc_01HXYZ", "status": "active" },
    "seller": { "id": "sel_01HXYZ", "name": "Acme Store", "handle": "acme-store" }
  }
}