curl --location --request POST '/api/v1/transformer/entity/create' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "individual",
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"phoneNumberPrefix": "1",
"phoneNumber": "5551234567",
"nationality": "US",
"dateOfBirth": "1990-01-01",
"permanentAddress": {
"addressLine1": "123 Main St",
"addressLine2": "Apt 4B",
"locality": "Downtown",
"city": "San Francisco",
"state": "CA",
"country": "US",
"postalCode": "94103"
}
}'