GET
/
teams
/
{id}
/
members
curl --request GET \
  --url http://api.attention.tech/v2/teams/{id}/members \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "userUUID": "c74eb7bc-7b0e-45e2-843a-67305bfc4dce",
      "teamUUID": "fe515723-fe2e-4959-a5fa-c4d3937fe7e4",
      "user": {
        "uuid": "123e4567-e89b-12d3-a456-426614174000",
        "email": "user@example.com",
        "firstName": "John",
        "lastName": "Doe",
        "transcriptLang": "en-US",
        "joinOutsideHostMeetings": true,
        "realTimeCapabilities": false,
        "settings": {
          "realTimeCapabilitiesOFF": true,
          "autoCalculateCRMFields": true,
          "joinWhenIAmHostAndAlone": true,
          "joinWhenIAmHostWithPeers": true,
          "joinWhenPeerIsHost": true,
          "joinWhenUnlicensedPeerIsHost": true,
          "dealsEnabled": true
        },
        "botName": "MyBot",
        "botImageURL": "https://example.com/bot.png",
        "primaryTeamUUID": "primary-team-uuid-12345",
        "organizationRoleUUID": "org-role-uuid-56789",
        "roles": [
          {
            "uuid": "84e67f54-5157-442b-a2b3-8b9c728b2fef",
            "name": "Admin",
            "type": "ADMIN"
          }
        ],
        "showReferralScreen": false,
        "seatType": "admin",
        "teams": [
          {
            "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": [
              {}
            ]
          }
        ]
      },
      "team": {
        "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": [
          {}
        ]
      }
    }
  ],
  "meta": {
    "pageCount": 5,
    "totalRecords": 100,
    "pageNumber": 1,
    "pageSize": 20
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

Unique identifier of the team (UUID format)

Response

200
application/json

Team members successfully retrieved

Response containing a list of team members and metadata