Skip to main content
DELETE
/
v1
/
users
/
{id}
Delete an user
curl --request DELETE \
  --url https://api.rootly.com/v1/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "1001",
    "type": "users",
    "attributes": {
      "name": "Trenton Schmidt",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Trenton",
      "last_name": "Schmidt",
      "full_name": "Trenton Schmidt",
      "full_name_with_team": "[Stiedemann, Paucek and Kessler] Trenton Schmidt",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-01-27T18:31:59.177-08:00",
      "created_at": "2026-01-27T18:31:59.177-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "d5e58620-4be8-46c9-ab51-8c65403bf1eb",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": null
      },
      "on_call_role": {
        "data": null
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "4ad20420-42d7-4e1f-91cb-a3bd37eb2e83",
            "type": "user_notification_rules"
          },
          {
            "id": "6db4df0e-3616-44d0-b082-9a39867286f6",
            "type": "user_notification_rules"
          }
        ]
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

user deleted

data
object
required