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": "a7ef2925-5c78-4915-8914-06b795b0c945",
"type": "user_email_addresses",
"attributes": {
"user_id": 488,
"email": "updated@example.com",
"primary": false,
"verified_at": null,
"created_at": "2025-07-31T05:10:10.781-07:00",
"updated_at": "2025-07-31T05:10:10.902-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
user_email_address updated
The response is of type object
.
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": "a7ef2925-5c78-4915-8914-06b795b0c945",
"type": "user_email_addresses",
"attributes": {
"user_id": 488,
"email": "updated@example.com",
"primary": false,
"verified_at": null,
"created_at": "2025-07-31T05:10:10.781-07:00",
"updated_at": "2025-07-31T05:10:10.902-07:00"
}
}
}