Retrieves a specific user email address
curl --request GET \
--url https://api.rootly.com/v1/email_addresses/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "15ebc0ed-3562-48dd-b98d-c99952924845",
"type": "user_email_addresses",
"attributes": {
"user_id": 504,
"email": "jacinto@funk.example",
"primary": false,
"verified_at": null,
"created_at": "2025-09-08T13:52:40.906-07:00",
"updated_at": "2025-09-08T13:52:40.906-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": "15ebc0ed-3562-48dd-b98d-c99952924845",
"type": "user_email_addresses",
"attributes": {
"user_id": 504,
"email": "jacinto@funk.example",
"primary": false,
"verified_at": null,
"created_at": "2025-09-08T13:52:40.906-07:00",
"updated_at": "2025-09-08T13:52:40.906-07:00"
}
}
}