curl --request PUT \
--url http://localhost:5001/identities/{identity_id} \
--header 'X-blnk-key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"identity_type": "individual",
"organization_name": "",
"first_name": "Alice",
"last_name": "Smith",
"other_names": "Marie",
"gender": "female",
"dob": "1985-05-15T00:00:00Z",
"email_address": "[email protected]",
"phone_number": "+1234567890",
"nationality": "Canadian",
"category": "customer",
"street": "789 Elm St",
"country": "Canada",
"state": "Ontario",
"post_code": "M4B 1B3",
"city": "Toronto",
"meta_data": {
"customer_id": "CUST123456",
"membership_level": "Gold",
"preferred_language": "English",
"verification_data": {
"verified_by": "ThirdPartyService",
"verification_date": "2024-07-01T10:00:00Z",
"verification_status": "verified"
}
}
}'