Retrieves all email addresses for the specified user
curl --request GET \
--url https://api.rootly.com/v1/users/{user_id}/email_addresses \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "9bbec96b-f753-4a97-8731-49e7468f59aa",
"type": "user_email_addresses",
"attributes": {
"user_id": 488,
"email": "arlen@glover.example",
"primary": true,
"verified_at": "2025-07-29T19:09:54.318-07:00",
"created_at": "2025-07-29T19:09:54.333-07:00",
"updated_at": "2025-07-29T19:09:54.333-07:00"
}
},
{
"id": "a8a94c9c-593b-407b-9cb0-3288c499bd3c",
"type": "user_email_addresses",
"attributes": {
"user_id": 488,
"email": "raymundo@prohaska.example",
"primary": false,
"verified_at": null,
"created_at": "2025-07-29T19:09:58.025-07:00",
"updated_at": "2025-07-29T19:09:58.025-07:00"
}
},
{
"id": "85da48f7-1605-4748-87a4-679773f5117e",
"type": "user_email_addresses",
"attributes": {
"user_id": 488,
"email": "raquel.effertz@langosh.test",
"primary": false,
"verified_at": null,
"created_at": "2025-07-29T19:09:58.048-07:00",
"updated_at": "2025-07-29T19:09:58.048-07:00"
}
}
],
"links": {
"self": "http://www.example.com/v1/users/488/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50",
"first": "http://www.example.com/v1/users/488/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50",
"prev": null,
"next": null,
"last": "http://www.example.com/v1/users/488/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50"
},
"meta": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_count": 3,
"total_pages": 1
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
user_email_addresses found
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/users/{user_id}/email_addresses \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "9bbec96b-f753-4a97-8731-49e7468f59aa",
"type": "user_email_addresses",
"attributes": {
"user_id": 488,
"email": "arlen@glover.example",
"primary": true,
"verified_at": "2025-07-29T19:09:54.318-07:00",
"created_at": "2025-07-29T19:09:54.333-07:00",
"updated_at": "2025-07-29T19:09:54.333-07:00"
}
},
{
"id": "a8a94c9c-593b-407b-9cb0-3288c499bd3c",
"type": "user_email_addresses",
"attributes": {
"user_id": 488,
"email": "raymundo@prohaska.example",
"primary": false,
"verified_at": null,
"created_at": "2025-07-29T19:09:58.025-07:00",
"updated_at": "2025-07-29T19:09:58.025-07:00"
}
},
{
"id": "85da48f7-1605-4748-87a4-679773f5117e",
"type": "user_email_addresses",
"attributes": {
"user_id": 488,
"email": "raquel.effertz@langosh.test",
"primary": false,
"verified_at": null,
"created_at": "2025-07-29T19:09:58.048-07:00",
"updated_at": "2025-07-29T19:09:58.048-07:00"
}
}
],
"links": {
"self": "http://www.example.com/v1/users/488/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50",
"first": "http://www.example.com/v1/users/488/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50",
"prev": null,
"next": null,
"last": "http://www.example.com/v1/users/488/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50"
},
"meta": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_count": 3,
"total_pages": 1
}
}