Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
user_email_address found
Retrieves a specific user email address
curl --request GET \
--url https://api.rootly.com/v1/email_addresses/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "a17535d6-2557-4d32-bcf1-cc02f6241c2a",
"type": "user_email_addresses",
"attributes": {
"user_id": 504,
"email": "susie@hodkiewicz-ullrich.test",
"primary": false,
"verified_at": null,
"created_at": "2025-09-26T17:30:08.023-07:00",
"updated_at": "2025-09-26T17:30:08.023-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
user_email_address found
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/email_addresses/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "a17535d6-2557-4d32-bcf1-cc02f6241c2a",
"type": "user_email_addresses",
"attributes": {
"user_id": 504,
"email": "susie@hodkiewicz-ullrich.test",
"primary": false,
"verified_at": null,
"created_at": "2025-09-26T17:30:08.023-07:00",
"updated_at": "2025-09-26T17:30:08.023-07:00"
}
}
}