Documentation Index
Fetch the complete documentation index at: https://apidocs.hopnow.io/llms.txt
Use this file to discover all available pages before exploring further.
This endpoint requires an Idempotency-Key header to prevent duplicate payouts.
Path Parameters
The account’s external ID (starts with acc_)
Unique key to prevent duplicate payouts (e.g., UUID v4)
Request Body
Beneficiary external ID (starts with bene_)
Payout destination external ID (starts with dest_)
Payout amount (decimal string, must be positive)
Optional internal note (max 500 characters)
Response
Payout identifier (starts with po_)
Payout status: pending_approval, pending, processing, completed, or failed
Payment provider (null until submitted)
ISO 8601 timestamp when payout was initiated
ISO 8601 timestamp when payout was submitted to provider
ISO 8601 timestamp when payout completed
ISO 8601 timestamp when payout failed
ISO 8601 timestamp when created
ISO 8601 timestamp when last updated
Response Example
{
"id": "po_1234567890abcdef",
"object": "payout",
"account_id": "acc_1234567890abcdef",
"beneficiary_id": "bene_1234567890abcdef",
"payout_destination_id": "dest_1234567890abcdef",
"amount": "100.00",
"currency": "USD",
"amount_in_usd": "100.00",
"status": "pending_approval",
"provider": null,
"provider_reference_id": null,
"initiated_at": "2024-01-15T10:00:00Z",
"submitted_at": null,
"completed_at": null,
"failed_at": null,
"failed_reason": null,
"note": "Monthly payment",
"created": "2024-01-15T10:00:00Z",
"updated": "2024-01-15T10:00:00Z"
}