Skip to main content
GET
/
organizations
/
teams
List Teams
curl --request GET \
  --url https://api.attention.tech/v2/organizations/teams \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "uuid": "team-uuid-123",
      "name": "Sales Team",
      "domain": "sales.example.com",
      "organizationUUID": "org-uuid-456",
      "phrases": [
        "revenue",
        "deal"
      ],
      "consentEmailEnabled": true,
      "organizerJoinInternalMeetings": false
    }
  ],
  "meta": {
    "totalRecords": 1
  }
}

Authorizations

Authorization
string
header
required

Response

Teams successfully returned

Response containing a list of teams and metadata

data
object[]

List of teams

meta
object
Example:
{
  "pageCount": 5,
  "totalRecords": 100,
  "pageNumber": 1,
  "pageSize": 20
}