Skip to main content
GET
/
vendor
/
payout-accounts
/
{id}
curl 'http://localhost:9000/vendor/payout-accounts/pacc_01HXYZ' \
  -H 'Authorization: Bearer <token>' \
  -H 'x-seller-id: <seller_id>'
{
  "payout_account": {
    "id": "pacc_01HXYZ",
    "status": "active",
    "onboarding": { "id": "onb_01HXYZ" },
    "created_at": "2026-01-15T10:00:00.000Z"
  }
}
Returns a payout account, verifying it belongs to the current seller.

Path parameters

id
string
required
The payout account’s ID.

Query parameters

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

Response

payout_account
object
curl 'http://localhost:9000/vendor/payout-accounts/pacc_01HXYZ' \
  -H 'Authorization: Bearer <token>' \
  -H 'x-seller-id: <seller_id>'
{
  "payout_account": {
    "id": "pacc_01HXYZ",
    "status": "active",
    "onboarding": { "id": "onb_01HXYZ" },
    "created_at": "2026-01-15T10:00:00.000Z"
  }
}