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

# Delete a user

## Path Parameters

<ParamField path="id" type="string" required>
  Unique identifier for the user. This should match the user's ID in your system.
</ParamField>

## Response

<ResponseField name="id" type="string">
  Unique identifier for the user. This should match the user's ID in your system.
</ResponseField>

<ResponseField name="object" type="string">
  Represents the object's type. Always "user".
</ResponseField>

<ResponseField name="deleted" type="boolean">
  Indicates whether the user was successfully deleted. Always true when the request succeeds.
</ResponseField>

<RequestExample>
  ```bash Request theme={null}
  curl https://api.usertour.io/v1/users/usr_123456789 \
  -XDELETE \
  -H 'Authorization: Bearer ak_123456789'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "usr_123456789",
    "object": "user",
    "deleted": true
  }
  ```
</ResponseExample>
