cURL
curl --request POST \ --url https://apis.hopnow.io/v1/accounts/{account_id}/payouts \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --header 'Idempotency-Key: <idempotency-key>' \ --data ' { "beneficiary_id": "<string>", "payout_destination_id": "<string>", "amount": "<string>", "currency": "<string>", "note": "<string>" } '
{ "id": "<string>", "object": "<string>", "account_id": "<string>", "beneficiary_id": "<string>", "payout_destination_id": "<string>", "amount": "<string>", "currency": "<string>", "amount_in_usd": "<string>", "status": "<string>", "provider_reference_id": "<string>", "initiated_at": "<string>", "completed_at": "<string>", "failed_at": "<string>", "failed_reason": "<string>", "note": "<string>", "created": "<string>", "updated": "<string>" }
Send money to a beneficiary’s payout destination
Idempotency-Key
acc_
ben_
dest_
pout_
"payout"
pending
processing
completed
failed
{ "id": "pout_1234567890abcdef", "object": "payout", "account_id": "acc_1234567890abcdef", "beneficiary_id": "ben_1234567890abcdef", "payout_destination_id": "dest_1234567890abcdef", "amount": "100.00", "currency": "USD", "amount_in_usd": "100.00", "status": "pending", "provider_reference_id": null, "initiated_at": "2024-01-15T10:00:00Z", "completed_at": null, "failed_at": null, "failed_reason": null, "note": "Monthly payment", "created": "2024-01-15T10:00:00Z", "updated": "2024-01-15T10:00:00Z" }