Add a new email address to an existing person
cURL
curl --request POST \ --url https://api.slant.app/v1/people/{person_id}/email_addresses \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "email": "john@example.com", "email_type": "personal", "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
"john@example.com"
personal
business
school
other
"personal"
true
email address created