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

# Enable Documents folder

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

This endpoint enables Documents folder for a team. 

***accepts access token of team primary admin or admin***

## Authorization

bearer

## Path Parameters

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

## Responses

### 200

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

```json
{
  "id": "c3XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
}
```

### 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 POST \
  "https://api.signnow.com/team/{team_id}/shared/document/folder" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN" \
  -H "Content-Type: application/json"
```

---
*Full reference: https://docs.signnow.com/docs/team-folders/operations/enable-documents-folder*
