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

# Projects

> Every published projects operation, generated from the contract.

8 operations on `client.projects`.

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.projects.archive(project_id)
  ```

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

## Operations

| Call                                       | Route                                             | Does                 |
| ------------------------------------------ | ------------------------------------------------- | -------------------- |
| `client.projects.archive(project_id)`      | `POST /registry/v1/projects/{project_id}/archive` | Archive a project    |
| `client.projects.bulk_create(body)`        | `POST /registry/v1/projects/bulk`                 | Bulk create projects |
| `client.projects.create(body)`             | `POST /registry/v1/projects`                      | Create a project     |
| `client.projects.delete(project_id)`       | `DELETE /registry/v1/projects/{project_id}`       | Delete a project     |
| `client.projects.export(project_id)`       | `GET /registry/v1/projects/{project_id}/export`   | Export a project     |
| `client.projects.get(project_id)`          | `GET /registry/v1/projects/{project_id}`          | Get a project        |
| `client.projects.list()`                   | `GET /registry/v1/projects`                       | List projects        |
| `client.projects.update(project_id, body)` | `PATCH /registry/v1/projects/{project_id}`        | Update a project     |

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