Payouts
API ReferencePayoutsRetrieve
Retrieve Payout
Retrieve details of an existing payout.
GET /payouts/:payout_id
Path Parameters
| Parameter | Type | Description |
|---|---|---|
payout_id | string | Required. The ID of the payout to retrieve. |
Request Example
curl 'https://api.v2.paychtec.com/payouts/po_1234567890abcdef' \ -H "api-key: snd_YOUR_API_KEY"Response
{
"payout_id": "po_1234567890abcdef",
"amount": 5000,
"currency": "USD",
"customer_id": "cus_1234567890abcdef",
"payout_type": "bank",
"status": "success",
"description": "Vendor payment",
"created": "2024-01-22T10:00:00Z",
"modified_at": "2024-01-22T10:05:00Z"
}