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": "518",
"type": "users",
"attributes": {
"name": "Scarlet Steuber",
"email": "raphael@runolfsson-herzog.example",
"phone": null,
"phone_2": null,
"first_name": "Scarlet",
"last_name": "Steuber",
"full_name": "Scarlet Steuber",
"full_name_with_team": "[Feest, Nader and Littel] Scarlet Steuber",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-09-16T17:18:53.383-07:00",
"created_at": "2025-09-16T17:18:53.383-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "1cf970cf-da69-4443-9ffd-d93aa63c9d67",
"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": "518",
"type": "users",
"attributes": {
"name": "Scarlet Steuber",
"email": "raphael@runolfsson-herzog.example",
"phone": null,
"phone_2": null,
"first_name": "Scarlet",
"last_name": "Steuber",
"full_name": "Scarlet Steuber",
"full_name_with_team": "[Feest, Nader and Littel] Scarlet Steuber",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-09-16T17:18:53.383-07:00",
"created_at": "2025-09-16T17:18:53.383-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "1cf970cf-da69-4443-9ffd-d93aa63c9d67",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": null
},
"on_call_role": {
"data": null
}
}
}
}