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

# Detected users

> Every published detected users operation, generated from the contract.

4 operations on `client.detected_users`.

Path parameters come first, positionally; the request body is last, as a plain
object. Method names are `snake_case` in Python and `camelCase` in
TypeScript, and resource names follow the same rule.

<CodeGroup>
  ```python Python theme={null}
  result = client.detected_users.delete(workspace_id, email)
  ```

  ```typescript TypeScript theme={null}
  const result = await client.detectedUsers.delete(workspace_id, email);
  ```
</CodeGroup>

## Operations

| Call                                                      | Route                                                       | Does                          |
| --------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------- |
| `client.detected_users.delete(workspace_id, email)`       | `DELETE /registry/v1/detected-users/{workspace_id}/{email}` | Delete a detected contributor |
| `client.detected_users.get(workspace_id, email)`          | `GET /registry/v1/detected-users/{workspace_id}/{email}`    | Get a detected contributor    |
| `client.detected_users.list()`                            | `GET /registry/v1/detected-users`                           | List detected contributors    |
| `client.detected_users.update(workspace_id, email, body)` | `PATCH /registry/v1/detected-users/{workspace_id}/{email}`  | Record a resolution outcome   |

## Related

<CardGroup cols={2}>
  <Card title="How the client is organised" icon="list" href="/sdk/operations">
    Resources, call shapes, and errors.
  </Card>

  <Card title="Errors and retries" icon="triangle-exclamation" href="/developers/errors-and-retries">
    What the SDK raises, and which calls are safe to retry.
  </Card>
</CardGroup>
