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": "49de364f-6764-4e41-92de-b302aa7bf03d",
"type": "user_email_addresses",
"attributes": {
"user_id": 605,
"email": "[email protected]",
"primary": false,
"verified_at": "2025-12-13T18:53:00.975-08:00",
"created_at": "2025-12-13T18:53:00.927-08:00",
"updated_at": "2025-12-13T18:53:00.979-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
email address verified successfully
Show child attributes
Unique ID of the email address
user_email_addresses Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/email_addresses/{id}/verify \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "49de364f-6764-4e41-92de-b302aa7bf03d",
"type": "user_email_addresses",
"attributes": {
"user_id": 605,
"email": "[email protected]",
"primary": false,
"verified_at": "2025-12-13T18:53:00.975-08:00",
"created_at": "2025-12-13T18:53:00.927-08:00",
"updated_at": "2025-12-13T18:53:00.979-08:00"
}
}
}