> For the complete documentation index, see [llms.txt](https://docs.autentique.com.br/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.autentique.com.br/api/mutations/removing-folders.md).

# Removing folders

To delete a folder, just use the following *mutation*:

```graphql
mutation{
  deleteFolder(id: "FOLDER_ID")
}
```

Expected response

```graphql
{
  "data": {
    "deleteFolder": true
  }
}
```

{% hint style="warning" %}
If the folder contains documents, they will be marked as "no folder" and can be found in the default directory.
{% endhint %}

{% hint style="info" %}
You can check what each of these parameters means directly in the full GraphQL API documentation, in the Docs menu of [Altair](https://altair.autentique.com.br/). If you're not sure how to do that, check out our tutorial on [**Using Altair**](/api/integration-basics/altair.md).
{% endhint %}

{% hint style="info" %}
If Altair doesn't help you integrate with the API, check out some examples of how to make these requests in other ways: <https://graphql.org/graphql-js/graphql-clients/>
{% endhint %}
