This is the request for details of a team. In addition to the list command, administrative users receive the list of admin and member users in this team. Existing teams can be updated when using the admin context.
Returns the details of the given team, denoted by the teamID
.
{ "id": "<ID of the team>", "displayName": "<Name of the team>", }
RESPONSE Fields | Value Type | Description |
---|---|---|
id | String | The GUID of the team, used for details and further operations |
displayName | String | The display name value of the team, as displayed in the interface |
# Request # Use user:password for authorization GET /api/cowork/admin/teams/3n1ytbwme7ngfyn9g9guwwurt HTTP/1.1 Accept: */* Authorization: Bearer VGhpcyBpcyBqdXN0IGEgZGVtbyBhY2Nlc3MgdG9rZW4u # Response HTTP/1.1 200 OK { "id": "3n1ytbwme7ngfyn9g9guwwurt", "displayName": "First Team" }