Description
Retrieve a single team.
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 'x-user-token: <api-token>'
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. |
Sample response
{
"id": 1,
"name": "Security team"
}