---
title: Update
url: https://www.tines.com/docs/api/teams/update/
updated: 2023-12-19T18:05:25+00:00
description: Update a team.
---

*[tines.com](https://www.tines.com/llms.txt) › [Docs](https://www.tines.com/llms.txt) › [Tines API](https://www.tines.com/llms.txt) › [Teams](https://www.tines.com/llm/docs/api/teams.md)*

# Update

*[View on tines.com](https://www.tines.com/docs/api/teams/update/)*

## Description

Update a team.

## Request

HTTP Method: **PUT**

| Parameter | Description                |
| --------- | -------------------------- |
| name      | The new name for the team. |

| Path Parameter | Description    |
| -------------- | -------------- |
| team_id        | ID of the team |

### Sample request

```bash
curl -X PUT \
  https://<tenant-domain>/api/v1/teams/<<team_id>> \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>'
  -d '{
        "name": "Security team 1"
      }'
```

## Response

A successful request will return a JSON object describing the updated team

### Field description

| Parameter | Description    |
| --------- | -------------- |
| id        | The team ID.   |
| name      | The team name. |

### Sample response

<!-- cspell:disable -->

```json
{
  "id": 1,
  "name": "Security team 1"
}
```

<!-- cspell:enable -->
