Delete a specific user by id
curl --request DELETE \
--url https://api.rootly.com/v1/users/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "518",
"type": "users",
"attributes": {
"name": "Michell Reynolds",
"email": "wayne_abshire@pagac.example",
"phone": null,
"phone_2": null,
"first_name": "Michell",
"last_name": "Reynolds",
"full_name": "Michell Reynolds",
"full_name_with_team": "[Halvorson Group] Michell Reynolds",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-09-10T23:05:28.657-07:00",
"created_at": "2025-09-10T23:05:28.657-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "e3f7bae4-285e-40f2-968d-62bf6092ce6e",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": null
},
"on_call_role": {
"data": null
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
user deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/users/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "518",
"type": "users",
"attributes": {
"name": "Michell Reynolds",
"email": "wayne_abshire@pagac.example",
"phone": null,
"phone_2": null,
"first_name": "Michell",
"last_name": "Reynolds",
"full_name": "Michell Reynolds",
"full_name_with_team": "[Halvorson Group] Michell Reynolds",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-09-10T23:05:28.657-07:00",
"created_at": "2025-09-10T23:05:28.657-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "e3f7bae4-285e-40f2-968d-62bf6092ce6e",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": null
},
"on_call_role": {
"data": null
}
}
}
}