Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
user_email_address updated
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": "e722a4c8-8da2-42e1-9512-4c913f4e86f3",
"type": "user_email_addresses",
"attributes": {
"user_id": 504,
"email": "updated@example.com",
"primary": false,
"verified_at": null,
"created_at": "2025-10-01T06:21:35.399-07:00",
"updated_at": "2025-10-01T06:21:35.488-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Show child attributes
user_email_address updated
Show child attributes
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": "e722a4c8-8da2-42e1-9512-4c913f4e86f3",
"type": "user_email_addresses",
"attributes": {
"user_id": 504,
"email": "updated@example.com",
"primary": false,
"verified_at": null,
"created_at": "2025-10-01T06:21:35.399-07:00",
"updated_at": "2025-10-01T06:21:35.488-07:00"
}
}
}