> ## Documentation Index
> Fetch the complete documentation index at: https://docs.attio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete a SCIM user

> Deletes a SCIM user from the workspace, suspending active members and cancelling pending invites. Returns 204 No Content on success.

Required scopes: `user_management:read-write`.

<h4 style={{borderBottom:"none"}}>Authorizations</h4>

<ParamField header="Authorization" type="string" required>
  This API uses OAuth 2.0 with the authorization code grant flow.
</ParamField>

<h4 style={{borderBottom:"none"}}>Path</h4>

<ParamField path="user_id" type="string" required>
  The workspace membership ID or workspace invite ID of the user to delete.
</ParamField>

<h4 style={{borderBottom:"none"}}>Response</h4>

Returns `204 No Content` with an empty body on success.

<RequestExample>
  ```bash theme={"system"}
  curl -X DELETE https://api.attio.com/scim/v2/Users/3a8f5b2c-9e14-4d7a-b832-1c6f85d90e47 \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

<ResponseExample>
  ```json 204 theme={"system"}
  {}
  ```
</ResponseExample>
