Get

Description

Retrieve a single team or case group.

Request

HTTP Method: GET

Parameter Description
team_id The ID of the team to retrieve.
curl -X GET \
  https://<<META.tenant.domain>>/api/v1/teams/<<team_id>> \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>'

Response

A successful request will return a JSON object representing the specified team.

Field description

Parameter Description
id The team ID.
name The team name.
groups The team groups.

Sample response

{
  "id": 1,
  "name": "Security team",
  "groups": [
    {
      "id": 3,
      "name": "Tier 1"
    }
  ]
}
Was this helpful?