Updates a user email address
curl --request PUT \
--url https://api.rootly.com/v1/email_addresses/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "user_email_addresses",
"attributes": {
"email": "<string>"
}
}
}
'{
"data": {
"id": "5f66230a-4338-476b-98df-a08856cb85dd",
"type": "user_email_addresses",
"attributes": {
"user_id": 603,
"email": "[email protected]",
"primary": false,
"verified_at": null,
"created_at": "2025-12-05T21:29:30.931-08:00",
"updated_at": "2025-12-05T21:29:31.003-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
user_email_address updated
Show child attributes
Unique ID of the email address
user_email_addresses Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/email_addresses/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "user_email_addresses",
"attributes": {
"email": "<string>"
}
}
}
'{
"data": {
"id": "5f66230a-4338-476b-98df-a08856cb85dd",
"type": "user_email_addresses",
"attributes": {
"user_id": 603,
"email": "[email protected]",
"primary": false,
"verified_at": null,
"created_at": "2025-12-05T21:29:30.931-08:00",
"updated_at": "2025-12-05T21:29:31.003-08:00"
}
}
}