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

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

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