GET
/
teams
/
{id}
Get Team
curl --request GET \
  --url http://api.attention.tech/v2/teams/{id} \
  --header 'Authorization: <api-key>'
{
  "uuid": "fe515723-fe2e-4959-a5fa-c4d3937fe7e4",
  "name": "Engineering",
  "phrases": [
    "engineering",
    "tech",
    "development"
  ],
  "slackConnection": {
    "id": "T1234567890",
    "info": {
      "id": "T1234567890",
      "name": "Attention Tech"
    }
  },
  "domain": "attention.tech",
  "organizerJoinInternalMeetings": true,
  "consentEmailEnabled": true,
  "parentTeamUUID": "2ccf9bde-68e3-4de4-bc4e-51b927336665",
  "organizationUUID": "16b78cec-82ef-46d2-8213-5d3bb7d2571c",
  "children": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

Unique identifier of the team (UUID format)

Response

Team successfully retrieved

Represents a team in the system with its properties and hierarchical structure

uuid
string

Unique identifier of the team

Example:

"fe515723-fe2e-4959-a5fa-c4d3937fe7e4"

name
string

Name of the team

Example:

"Engineering"

phrases
string[]

List of keywords or phrases associated with the team

Example:
["engineering", "tech", "development"]
slackConnection
object

Represents the Slack integration details for a team

domain
string

Domain associated with the team

Example:

"attention.tech"

organizerJoinInternalMeetings
boolean

Whether team organizers can join internal meetings

Example:

true

Whether email consent is enabled for the team

Example:

true

parentTeamUUID
string

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

Example:

"2ccf9bde-68e3-4de4-bc4e-51b927336665"

organizationUUID
string

UUID of the organization this team belongs to

Example:

"16b78cec-82ef-46d2-8213-5d3bb7d2571c"

children
object[]

List of child teams if this team has a hierarchical structure