Skip to main content
GET
/
teams
/
{id}
/
members
Get Team Members
curl --request GET \
  --url https://api.attention.tech/v2/teams/{id}/members \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "teamUUID": "team-uuid-123",
      "userUUID": "user-uuid-456",
      "team": {
        "uuid": "team-uuid-123",
        "name": "Sales Team"
      },
      "user": {
        "uuid": "user-uuid-456",
        "firstName": "Jane",
        "lastName": "Smith",
        "email": "jane@example.com"
      }
    }
  ],
  "meta": {
    "totalRecords": 1
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.attention.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

Unique identifier of the team (UUID format)

Response

Team members successfully retrieved

Response containing a list of team members and metadata

data
object[]

List of team members

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