POST
/
v1
/
email_addresses
/
{id}
/
verify
Verifies an email address with token
curl --request POST \
  --url https://api.rootly.com/v1/email_addresses/{id}/verify \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "e37fc876-811a-40dc-b68e-d12c74006cfb",
    "type": "user_email_addresses",
    "attributes": {
      "user_id": 488,
      "email": "garret_paucek@mann.example",
      "primary": false,
      "verified_at": "2025-08-14T12:48:53.347-07:00",
      "created_at": "2025-08-14T12:48:53.257-07:00",
      "updated_at": "2025-08-14T12:48:53.354-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

Query Parameters

token
string
required

Response

200
application/vnd.api+json

email address verified successfully

The response is of type object.