cURL
curl --request GET \ --url https://apis.hopnow.io/v1/accounts/{account_id}/beneficiaries/{beneficiary_id}/payout-destinations \ --header 'Authorization: Bearer <token>'
{ "items": [ { "id": "<string>", "object": "<string>", "country": "<string>", "payout_method": "<string>", "type": "<string>", "currency": "<string>", "status": "<string>", "is_default": true, "created": "<string>" } ], "page": 123, "size": 123, "total": 123, "pages": 123 }
Retrieve all payout destinations for a beneficiary
acc_
ben_
active
disabled
inactive
Show Payout Destination Fields
dest_
"payout_destination"
{ "items": [ { "id": "dest_1234567890abcdef", "object": "payout_destination", "country": "US", "payout_method": "ach", "type": "bank_account", "label": null, "currency": "USD", "network": null, "status": "active", "account_number_last4": "7890", "is_default": true, "created": "2024-01-15T10:00:00Z" } ], "page": 1, "size": 10, "total": 1, "pages": 1 }