> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/002_company/011_documents/015__update_company_folder.md).

# Update Company Folder

GraphQL endpoint: `/company`

Updates one of the calling company's document folders — currently the name only.

## Query

```graphql
mutation ($id: ID!) { updateCompanyFolder(id: $id, name: "New") { id name } }

```

## Variables

```json
{
  "id": "00000000-0000-4000-8000-000000000001"
}
```

## Response

```json
{
  "data": {
    "updateCompanyFolder": {
      "id": "00000000-0000-4000-8000-000000000001",
      "name": "New"
    }
  }
}
```
