> For the complete documentation index, see [llms.txt](https://docs.ggwp.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ggwp.com/identity-and-access-management-iam/api-docs-scim/users-apis/delete-user.md).

# Delete User

### Overview

Deletes a user from the system.

This endpoint is used by identity providers such as Okta or Microsoft Azure Active Directory to deprovision users.

***

### Endpoint

```bash
DELETE /Users/{id}
```

***

### Full URL

```bash
https://api.ggwp.com/scim/v2/Users/{id}
```

***

### Authentication

```http
Authorization: Bearer <access_token>
```

***

## Path Parameters

| Parameter | Type   | Description            |
| --------- | ------ | ---------------------- |
| id        | string | Unique user identifier |

***

## Response

### Success (204 No Content)

```
204 No Content
```

* Indicates the user was successfully deleted
* No response body is returned

***

## Error Responses

### 404 Not Found

```json
{
  "schemas": ["urn:ietf:params:scim:api:messages:2.0:Error"],
  "status": "404",
  "detail": "User not found"
}
```

***

## Important Notes

* A successful request returns `204 No Content`
* The user will no longer be available via SCIM APIs
* Subsequent requests for the same user returns `404 Not Found`

***

## Behavior

* The user is removed from SCIM-managed resources
* Further operations on the same `id` may result in `404 Not Found`
