---
title: "Rename team"
url: "https://docs.signnow.com/docs/manage-team/operations/rename-team"
type: "endpoint"
section: "manage-team"
slug: "manage-team/operations/rename-team"
method: "PUT"
path: "/team/{team_id}"
operation_id: "rename-team"
authorization: "bearer"
---

# Rename team

`PUT /team/{team_id}`

This endpoint allows users to rename a team

## Authorization

bearer

## Path Parameters

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

## Request Body

**Schema**

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

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

```json
{
  "name": "New team name"
}
```

## Responses

### 200

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

```json
{
  "id": "96XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
}
```

### 400

Trying to rename team by user who is not primary admin

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

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

## Code Examples

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

### cURL

```bash
curl -X PUT \
  "https://api.signnow.com/team/{team_id}" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"name": "New team name"}'
```

---
*Full reference: https://docs.signnow.com/docs/manage-team/operations/rename-team*
