Gets information about a team belonging to the authenticated org.
Required permission
Organisation > Team > General > Read
Path parameters
teamId
string requiredID of the team
Response body
- {object}Response object.
data
{object} requiredResult data.id
string requiredID of the team.pattern^[A-Za-z0-9-]+$uid
stringPermanent identifier for the resource. Unlike `id`, it never changes and is never reused.min length24max length24name
string requiredDisplay name of the team.description
stringDescription of the team.createdAt
string requiredThe time the team was created.updatedAt
stringThe time the team was last updated.
API
CLI
JS Client
GET /v1/teams/{teamId}
Example response
200 OK
Details about the team.
JSON
{
"data": {
"id": "my-team",
"uid": "68f0aa1b9c4e2d7f11a3b402",
"name": "My Team",
"description": "This is my team.",
"createdAt": "2021-01-20T11:19:53.175Z",
"updatedAt": "2021-01-20T11:19:53.175Z"
}
}