Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
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": "c36948b0-f923-4bce-9a73-13348c59a9a1",
"type": "user_email_addresses",
"attributes": {
"user_id": 554,
"email": "[email protected]",
"primary": true,
"verified_at": "2025-11-28T18:14:03.357-08:00",
"created_at": "2025-11-28T18:14:03.371-08:00",
"updated_at": "2025-11-28T18:14:03.371-08:00"
}
},
{
"id": "2f4cc3ae-c225-4ee4-ad7e-f63b99c711db",
"type": "user_email_addresses",
"attributes": {
"user_id": 554,
"email": "[email protected]",
"primary": false,
"verified_at": null,
"created_at": "2025-11-28T18:14:06.350-08:00",
"updated_at": "2025-11-28T18:14:06.350-08:00"
}
},
{
"id": "ff8c4a7d-f796-47a7-a09d-9ab66a4d1a56",
"type": "user_email_addresses",
"attributes": {
"user_id": 554,
"email": "[email protected]",
"primary": false,
"verified_at": null,
"created_at": "2025-11-28T18:14:06.366-08:00",
"updated_at": "2025-11-28T18:14:06.366-08:00"
}
}
],
"links": {
"self": "http://www.example.com/v1/users/554/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50",
"first": "http://www.example.com/v1/users/554/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50",
"prev": null,
"next": null,
"last": "http://www.example.com/v1/users/554/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.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/users/{user_id}/email_addresses \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "c36948b0-f923-4bce-9a73-13348c59a9a1",
"type": "user_email_addresses",
"attributes": {
"user_id": 554,
"email": "[email protected]",
"primary": true,
"verified_at": "2025-11-28T18:14:03.357-08:00",
"created_at": "2025-11-28T18:14:03.371-08:00",
"updated_at": "2025-11-28T18:14:03.371-08:00"
}
},
{
"id": "2f4cc3ae-c225-4ee4-ad7e-f63b99c711db",
"type": "user_email_addresses",
"attributes": {
"user_id": 554,
"email": "[email protected]",
"primary": false,
"verified_at": null,
"created_at": "2025-11-28T18:14:06.350-08:00",
"updated_at": "2025-11-28T18:14:06.350-08:00"
}
},
{
"id": "ff8c4a7d-f796-47a7-a09d-9ab66a4d1a56",
"type": "user_email_addresses",
"attributes": {
"user_id": 554,
"email": "[email protected]",
"primary": false,
"verified_at": null,
"created_at": "2025-11-28T18:14:06.366-08:00",
"updated_at": "2025-11-28T18:14:06.366-08:00"
}
}
],
"links": {
"self": "http://www.example.com/v1/users/554/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50",
"first": "http://www.example.com/v1/users/554/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50",
"prev": null,
"next": null,
"last": "http://www.example.com/v1/users/554/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
}
}