PUT
/
v1
/
email_addresses
/
{id}
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": "c7e42cd2-4c8c-4db8-b706-3ce5de93bfed",
    "type": "user_email_addresses",
    "attributes": {
      "user_id": 475,
      "email": "updated@example.com",
      "primary": false,
      "created_at": "2025-05-29T17:49:29.436-07:00",
      "updated_at": "2025-05-29T17:49:29.629-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.