Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
user deleted
Delete a specific user by id
curl --request DELETE \
--url https://api.rootly.com/v1/users/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "544",
"type": "users",
"attributes": {
"name": "Irma Bartell",
"email": "jeffrey.mcclure@leannon.example",
"phone": null,
"phone_2": null,
"first_name": "Irma",
"last_name": "Bartell",
"full_name": "Irma Bartell",
"full_name_with_team": "[Kuvalis-Terry] Irma Bartell",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-10-08T04:40:27.345-07:00",
"created_at": "2025-10-08T04:40:27.345-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "cc9feb0e-c97e-40cc-87a4-b208afe11563",
"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
Show child attributes
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/users/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "544",
"type": "users",
"attributes": {
"name": "Irma Bartell",
"email": "jeffrey.mcclure@leannon.example",
"phone": null,
"phone_2": null,
"first_name": "Irma",
"last_name": "Bartell",
"full_name": "Irma Bartell",
"full_name_with_team": "[Kuvalis-Terry] Irma Bartell",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-10-08T04:40:27.345-07:00",
"created_at": "2025-10-08T04:40:27.345-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "cc9feb0e-c97e-40cc-87a4-b208afe11563",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": null
},
"on_call_role": {
"data": null
}
}
}
}