cURL
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 } }
Retrieves all members of a specific team. The response includes user details and their roles within the team.
Unique identifier of the team (UUID format)
Team members successfully retrieved
Response containing a list of team members and metadata
List of team members
Show child attributes
{ "pageCount": 5, "totalRecords": 100, "pageNumber": 1, "pageSize": 20 }
Was this page helpful?