---
title: "Disable Documents folder"
url: "https://docs.signnow.com/docs/team-folders/operations/delete__team_team_id_shared_document_folder"
type: "endpoint"
section: "team-folders"
slug: "team-folders/operations/delete__team_team_id_shared_document_folder"
method: "DELETE"
path: "/team/{team_id}/shared/document/folder"
operation_id: "delete__team_team_id_shared_document_folder"
authorization: "bearer"
---

# Disable Documents folder

`DELETE /team/{team_id}/shared/document/folder`

This endpoint allows users to disable "Documents" folder for a team.

## Authorization

bearer

## Path Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `team_id` | string | Yes |  |

## Responses

### 200

**Example** (`application/json`)

```json
{
  "result": "success"
}
```

### 400

* User is not an admin
* Team not found

**Example** (`Team not found`)

```json
{
  "code": 66391,
  "message": "Team not found"
}
```

**Example** (`User not admin`)

```json
{
  "code": 65615,
  "message": "Operation not allowed"
}
```

## Code Examples

> Replace `$SIGNNOW_ACCESS_TOKEN` and any `{placeholder}` values before running.

### cURL

```bash
curl -X DELETE \
  "https://api.signnow.com/team/{team_id}/shared/document/folder" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN"
```

---
*Full reference: https://docs.signnow.com/docs/team-folders/operations/delete__team_team_id_shared_document_folder*
