> ## 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.

# Scorers

> Every published scorers operation, generated from the contract.

5 operations on `client.scorers`.

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.scorers.archive(scorer_id)
  ```

  ```typescript TypeScript theme={null}
  const result = await client.scorers.archive(scorer_id);
  ```
</CodeGroup>

## Operations

| Call                                     | Route                                       | Does             |
| ---------------------------------------- | ------------------------------------------- | ---------------- |
| `client.scorers.archive(scorer_id)`      | `POST /eval/v1/scorers/{scorer_id}/archive` | Archive a scorer |
| `client.scorers.create(body)`            | `POST /eval/v1/scorers`                     | Create a scorer  |
| `client.scorers.get(scorer_id)`          | `GET /eval/v1/scorers/{scorer_id}`          | Get a scorer     |
| `client.scorers.list()`                  | `GET /eval/v1/scorers`                      | List scorers     |
| `client.scorers.update(scorer_id, body)` | `PATCH /eval/v1/scorers/{scorer_id}`        | Update a scorer  |

## 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>
