Retrieves a specific user email address
curl --request GET \
--url https://api.rootly.com/v1/email_addresses/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "d73f1a2b-ad42-48bc-9d51-dd95e51a03d6",
"type": "user_email_addresses",
"attributes": {
"user_id": 488,
"email": "joaquin@predovic.example",
"primary": false,
"verified_at": null,
"created_at": "2025-07-29T13:46:51.064-07:00",
"updated_at": "2025-07-29T13:46:51.064-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
user_email_address found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/email_addresses/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "d73f1a2b-ad42-48bc-9d51-dd95e51a03d6",
"type": "user_email_addresses",
"attributes": {
"user_id": 488,
"email": "joaquin@predovic.example",
"primary": false,
"verified_at": null,
"created_at": "2025-07-29T13:46:51.064-07:00",
"updated_at": "2025-07-29T13:46:51.064-07:00"
}
}
}