Update an existing email address for a person
cURL
curl --request PATCH \ --url https://api.slant.app/v1/people/{person_id}/email_addresses/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "email": "updated@example.com", "email_type": "business", "is_primary": true } '
{ "id": "<string>", "person_id": "<string>", "email": "<string>", "email_type": "<string>", "is_primary": true }
OAuth 2.0 Bearer Token from Clerk authentication
The person ID
The email address ID
"updated@example.com"
personal
business
school
other
"business"
true
email address updated