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": "7b4cdeb4-bf73-4d6f-bbf6-587bb7c62bed",
"type": "user_email_addresses",
"attributes": {
"user_id": 605,
"email": "[email protected]",
"primary": false,
"verified_at": null,
"created_at": "2025-12-15T12:25:19.130-08:00",
"updated_at": "2025-12-15T12:25:19.130-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
verification email sent 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}/resend_verification \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "7b4cdeb4-bf73-4d6f-bbf6-587bb7c62bed",
"type": "user_email_addresses",
"attributes": {
"user_id": 605,
"email": "[email protected]",
"primary": false,
"verified_at": null,
"created_at": "2025-12-15T12:25:19.130-08:00",
"updated_at": "2025-12-15T12:25:19.130-08:00"
}
}
}