v1

latestOpenAPI 3.0.1Apache 2.02026-07-1398228598.3 KB
Team

Get Team

Retrieves detailed information about a specific team by its ID. The response includes team details, members, and hierarchical information.

get/teams/{id}

Path parameters

idstring required

Unique identifier of the team (UUID format)

Response

Team successfully retrieved

uuidstring

Unique identifier of the team

namestring

Name of the team

phrasesstring[]

List of keywords or phrases associated with the team

domainstring

Domain associated with the team

organizerJoinInternalMeetingsboolean

Whether team organizers can join internal meetings

consentEmailEnabledboolean

Whether email consent is enabled for the team

parentTeamUUIDstring

UUID of the parent team if this team is part of a hierarchy

organizationUUIDstring

UUID of the organization this team belongs to

Example response

{
  "uuid": "fe515723-fe2e-4959-a5fa-c4d3937fe7e4",
  "name": "Engineering",
  "phrases": [
    "engineering",
    "tech",
    "development"
  ],
  "domain": "attention.tech",
  "organizerJoinInternalMeetings": true,
  "consentEmailEnabled": true,
  "parentTeamUUID": "2ccf9bde-68e3-4de4-bc4e-51b927336665",
  "organizationUUID": "16b78cec-82ef-46d2-8213-5d3bb7d2571c"
}