cURL
curl --request GET \ --url https://apis.hopnow.io/v1/accounts/{account_id}/beneficiaries \ --header 'Authorization: Bearer <token>'
{ "items": [ { "id": "<string>", "object": "<string>", "beneficiary_type": "<string>", "title": "<string>", "first_name": "<string>", "middle_name": "<string>", "last_name": "<string>", "display_name": "<string>", "company_name": "<string>", "status": "<string>", "verified": true, "created": "<string>" } ], "page": 123, "size": 123, "total": 123, "pages": 123 }
Retrieve a paginated list of beneficiaries
acc_
active
disabled
inactive
Show Beneficiary Fields
ben_
"beneficiary"
individual
business
{ "items": [ { "id": "ben_1234567890abcdef", "object": "beneficiary", "beneficiary_type": "individual", "title": "Mr", "first_name": "John", "middle_name": "Michael", "last_name": "Doe", "display_name": "John Doe", "company_name": null, "status": "active", "verified": true, "created": "2024-01-15T10:00:00Z" } ], "page": 1, "size": 10, "total": 1, "pages": 1 }