cURL
curl --request GET \ --url https://apis.hopnow.io/v1/accounts/{account_id}/payouts \ --header 'Authorization: Bearer <token>'
{ "items": [ { "id": "<string>", "object": "<string>", "beneficiary": {}, "payout_destination": {}, "amount": "<string>", "currency": "<string>", "status": "<string>", "initiated_at": "<string>", "created": "<string>" } ], "page": 123, "size": 123, "total": 123, "pages": 123 }
Retrieve a paginated list of outgoing payments
acc_
pending
processing
completed
failed
Show Payout Fields
pout_
"payout"
{ "items": [ { "id": "pout_1234567890abcdef", "object": "payout", "beneficiary": { "id": "ben_1234567890abcdef", "object": "beneficiary", "first_name": "John", "last_name": "Doe", "display_name": "John Doe", "status": "active" }, "payout_destination": { "id": "dest_1234567890abcdef", "object": "payout_destination", "country": "US", "type": "bank_account", "currency": "USD", "status": "active" }, "amount": "100.00", "currency": "USD", "amount_in_usd": "100.00", "status": "completed", "provider_reference_id": "ref_123", "initiated_at": "2024-01-15T10:00:00Z", "completed_at": "2024-01-15T10:05:00Z", "failed_at": null, "failed_reason": null, "note": "Monthly payment", "created": "2024-01-15T10:00:00Z", "updated": "2024-01-15T10:05:00Z" } ], "page": 1, "size": 10, "total": 1, "pages": 1 }