curl --request POST \
--url https://api.example.com/banking/v1/us/accounts/personal/ \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '
{
"taxIdType": "<string>",
"taxId": "<string>",
"birthDate": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"middleName": "<string>",
"citizenshipCountryCode": "<string>",
"phoneNumber": "<string>",
"extension": "<string>",
"street": "<string>",
"city": "<string>",
"state": "<string>",
"postalCode": "<string>",
"countryCode": "<string>"
}
'