Delete a specific user by id
curl --request DELETE \
--url https://api.rootly.com/v1/users/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "500",
"type": "users",
"attributes": {
"name": "Robin Cruickshank",
"email": "ernest@fahey.example",
"phone": null,
"phone_2": null,
"first_name": "Robin",
"last_name": "Cruickshank",
"full_name": "Robin Cruickshank",
"full_name_with_team": "[Kautzer LLC] Robin Cruickshank",
"slack_id": null,
"time_zone": "UTC",
"updated_at": "2025-08-01T15:50:30.460-07:00",
"created_at": "2025-08-01T15:50:30.460-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "150553fa-f540-4990-a107-40d62f2da17f",
"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": "500",
"type": "users",
"attributes": {
"name": "Robin Cruickshank",
"email": "ernest@fahey.example",
"phone": null,
"phone_2": null,
"first_name": "Robin",
"last_name": "Cruickshank",
"full_name": "Robin Cruickshank",
"full_name_with_team": "[Kautzer LLC] Robin Cruickshank",
"slack_id": null,
"time_zone": "UTC",
"updated_at": "2025-08-01T15:50:30.460-07:00",
"created_at": "2025-08-01T15:50:30.460-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "150553fa-f540-4990-a107-40d62f2da17f",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": null
},
"on_call_role": {
"data": null
}
}
}
}