curl --request PUT \
--url http://localhost:5001/identities/{id} \
--header 'Content-Type: application/json' \
--header 'X-blnk-key: <api-key>' \
--data '
{
"identity_type": "individual",
"first_name": "Chijioke",
"last_name": "Adeola",
"other_names": "Emeka",
"gender": "male",
"dob": "1990-01-01T00:00:00Z",
"email_address": "[email protected]",
"phone_number": "+2347012345678",
"nationality": "Nigerian",
"street": "10 Aso Villa Way",
"country": "Nigeria",
"state": "Lagos",
"post_code": "101001",
"city": "Lagos",
"created_at": "2023-10-16T10:00:00Z",
"meta_data": {
"verified": true,
"reference": "XYZ123456789"
}
}
'