Retrieves a specific user email address
curl --request GET \
--url https://api.rootly.com/v1/email_addresses/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "565960d5-fb6b-4148-b984-d5bf58762ed2",
"type": "user_email_addresses",
"attributes": {
"user_id": 554,
"email": "[email protected]",
"primary": false,
"verified_at": null,
"created_at": "2025-12-01T07:44:16.016-08:00",
"updated_at": "2025-12-01T07:44:16.016-08:00"
}
}
}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": "565960d5-fb6b-4148-b984-d5bf58762ed2",
"type": "user_email_addresses",
"attributes": {
"user_id": 554,
"email": "[email protected]",
"primary": false,
"verified_at": null,
"created_at": "2025-12-01T07:44:16.016-08:00",
"updated_at": "2025-12-01T07:44:16.016-08:00"
}
}
}