PUT
/
v1
/
email_addresses
/
{id}
Update 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": "5ebef449-1078-4af1-ae5f-b37c131913f3",
    "type": "user_email_addresses",
    "attributes": {
      "user_id": 488,
      "email": "updated@example.com",
      "primary": false,
      "verified_at": null,
      "created_at": "2025-08-21T23:36:42.774-07:00",
      "updated_at": "2025-08-21T23:36:42.871-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/vnd.api+json

Response

200
application/vnd.api+json

user_email_address updated

The response is of type object.