---
title: Create
url: https://www.tines.com/docs/api/teams/create/
updated: 2023-12-20T21:02:20+00:00
description: Create a team in Tines.
---

*[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)*

# Create

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

## Description

Create a team in Tines.

## Request

HTTP Method: **POST**

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

### Sample request

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

## Response

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

### Field description

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

### Sample response

<!-- cspell:disable -->

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

<!-- cspell:enable -->
