curl --location --request POST 'https://online-banking.originalaccounts.com/v3/beneficiaries/personal' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"user_id": "user-uuid",
"entity_id": "entity-uuid",
"email": "test@example.com",
"phone": "+1234567890",
"phone_country": "US",
"first_name": "John",
"last_name": "Doe",
"address1": "123 Main St",
"address2": "Apt 4",
"city": "New York",
"state_province_region": "NY",
"postal_code": "10001",
"country": "US",
"tax_number": "123-45-6789",
"name_on_bank_account": "John Doe",
"swift_bic": "ABCDEF12",
"account_type": "checking",
"account_number": "123456789",
"routing_code": "123456",
"currency": "USD",
"bank_name": "Bank of America",
"branch_name": "Main Branch",
"bank_address1": "123 Bank St",
"bank_address2": "Suite 100",
"bank_city": "New York",
"bank_state_province_region": "NY",
"bank_postal_code": "10001",
"bank_country": "US",
"tax_number_expiration": "2025-12-31",
"date_of_birth": "1990-01-01"
}'