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

# Manage overview

> Create and administer the containers your agents live in: workspaces that group projects and people, and projects that each own a single agent.

Workspaces group projects and the people who can reach them. A project owns a
single agent and everything inside it.

These endpoints create and administer both, and they are where you get the
`projectID` that almost every other endpoint in this API asks for.

## Endpoints

### Project

| Endpoint                                                                                              | Description                        |
| ----------------------------------------------------------------------------------------------------- | ---------------------------------- |
| <Badge color="green" size="sm">GET</Badge> [List projects](/api-reference/project/list-projects)      | List all projects by workspace ID. |
| <Badge color="blue" size="sm">POST</Badge> [Create project](/api-reference/project/create-project)    | Create a new project.              |
| <Badge color="green" size="sm">GET</Badge> [Get project](/api-reference/project/get-project)          | Get a project by ID.               |
| <Badge color="orange" size="sm">PATCH</Badge> [Update project](/api-reference/project/update-project) | Update a project by ID.            |
| <Badge color="red" size="sm">DELETE</Badge> [Delete project](/api-reference/project/delete-project)   | Delete a project by ID.            |

### Workspace

| Endpoint                                                                                                    | Description                                                |
| ----------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------- |
| <Badge color="green" size="sm">GET</Badge> [List workspaces](/api-reference/workspace/list-workspaces)      | List all workspaces the authorized account is a member of. |
| <Badge color="blue" size="sm">POST</Badge> [Create workspace](/api-reference/workspace/create-workspace)    | Create a new workspace.                                    |
| <Badge color="green" size="sm">GET</Badge> [Get workspace](/api-reference/workspace/get-workspace)          | Get a single workspace by ID.                              |
| <Badge color="orange" size="sm">PATCH</Badge> [Update workspace](/api-reference/workspace/update-workspace) | Update a single workspace by ID.                           |
| <Badge color="red" size="sm">DELETE</Badge> [Delete workspace](/api-reference/workspace/delete-workspace)   | Delete a single workspace by ID.                           |
