Resends verification email for an email address
curl --request POST \
--url https://api.rootly.com/v1/email_addresses/{id}/resend_verification \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "08f49e02-3bfd-4e56-ba73-14773ccbcf17",
"type": "user_email_addresses",
"attributes": {
"user_id": 488,
"email": "maryetta_erdman@grant-wintheiser.example",
"primary": false,
"verified_at": null,
"created_at": "2025-07-25T08:17:44.110-07:00",
"updated_at": "2025-07-25T08:17:44.110-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
verification email sent successfully
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/email_addresses/{id}/resend_verification \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "08f49e02-3bfd-4e56-ba73-14773ccbcf17",
"type": "user_email_addresses",
"attributes": {
"user_id": 488,
"email": "maryetta_erdman@grant-wintheiser.example",
"primary": false,
"verified_at": null,
"created_at": "2025-07-25T08:17:44.110-07:00",
"updated_at": "2025-07-25T08:17:44.110-07:00"
}
}
}