DELETE
/
v1
/
users
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "480",
    "type": "users",
    "attributes": {
      "name": "Curtis Hodkiewicz",
      "email": "delta_herzog@ferry-kautzer.test",
      "phone": null,
      "phone_2": null,
      "full_name": "Curtis Hodkiewicz",
      "full_name_with_team": "[Torp-Langosh] Curtis Hodkiewicz",
      "slack_id": null,
      "time_zone": "UTC",
      "updated_at": "2025-05-08T00:25:55.477-07:00",
      "created_at": "2025-05-08T00:25:55.477-07:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "cf307e11-6f13-4c44-b575-2f736eb2c500",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      }
    }
  }
}

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

200
application/vnd.api+json
user deleted

The response is of type object.