Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Response
email address verified successfully
Verifies an email address using a verification token
curl --request POST \
  --url https://api.rootly.com/v1/email_addresses/{id}/verify \
  --header 'Authorization: Bearer <token>'{
  "data": {
    "id": "c06804f1-59fc-404e-b9b4-71b83818ab44",
    "type": "user_email_addresses",
    "attributes": {
      "user_id": 552,
      "email": "margurite@rempel.example",
      "primary": false,
      "verified_at": "2025-11-03T21:38:20.351-08:00",
      "created_at": "2025-11-03T21:38:20.285-08:00",
      "updated_at": "2025-11-03T21:38:20.355-08:00"
    }
  }
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
email address verified successfully
Show child attributes
Was this page helpful?
curl --request POST \
  --url https://api.rootly.com/v1/email_addresses/{id}/verify \
  --header 'Authorization: Bearer <token>'{
  "data": {
    "id": "c06804f1-59fc-404e-b9b4-71b83818ab44",
    "type": "user_email_addresses",
    "attributes": {
      "user_id": 552,
      "email": "margurite@rempel.example",
      "primary": false,
      "verified_at": "2025-11-03T21:38:20.351-08:00",
      "created_at": "2025-11-03T21:38:20.285-08:00",
      "updated_at": "2025-11-03T21:38:20.355-08:00"
    }
  }
}