---
title: "Grant admin permissions"
url: "https://docs.signnow.com/docs/manage-admins/operations/grant-admin-permissions"
type: "endpoint"
section: "manage-admins"
slug: "manage-admins/operations/grant-admin-permissions"
method: "POST"
path: "/team/{team_id}/admin"
operation_id: "grant-admin-permissions"
authorization: "bearer"
---

# Grant admin permissions

`POST /team/{team_id}/admin`

This endpoint allows team primary admin to grant admin permissions to a team member

## Authorization

bearer

## Path Parameters

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

## Request Body

**Schema**

```json
{
  "type": "object",
  "properties": {}
}
```

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

```json
{
  "email": "admin1@email.com"
}
```

## Responses

### 200

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

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

### 400

* Either request body or email address is missing.
* User with this email address is not in the team.
* User is not a primary admin of the team.
* Team not found.
* User not found.


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

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

**Example** (`User not found`)

```json
{
  "code": 65582,
  "message": "User not found"
}
```

**Example** (`Email address missing`)

```json
{
  "code": 65582,
  "message": "Email is required."
}
```

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

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

**Example** (`User is not in the team`)

```json
{
  "code": 65582,
  "message": "User is not a part of this team"
}
```

## Code Examples

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

### cURL

```bash
curl -X POST \
  "https://api.signnow.com/team/{team_id}/admin" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"email": "admin1@email.com"}'
```

---
*Full reference: https://docs.signnow.com/docs/manage-admins/operations/grant-admin-permissions*
