Create

Description

Create a team in Tines.

Request

HTTP Method: POST

Parameter Description
name The team name.

Sample request

curl -X POST \
  https://<<META.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

{
  "id": 1,
  "name": "Security team"
}
Was this helpful?