curl --request PATCH \
--url https://apis.hopnow.io/v1/accounts/{account_id}/beneficiaries/{beneficiary_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"beneficiary_type": "<string>",
"title": "<string>",
"first_name": "<string>",
"middle_name": "<string>",
"last_name": "<string>",
"display_name": "<string>",
"company_name": "<string>",
"email": "<string>",
"phone": "<string>",
"address": {},
"tax_id": "<string>",
"country_code": "<string>",
"note": "<string>"
}
'