Teams

List team members

Returns a paginated list of users belonging to a team.

get/teams/{id}/members

Path parameters

idinteger required

Team ID

Example:1

Team ID

Query parameters

pageinteger

Page number (1-based)

Example:1

Page number (1-based)

sizeinteger

Number of items per page

Example:25

Number of items per page

Response

Paginated list of team members

Example response

{
  "data": [
    {
      "id": 1,
      "email": "john@example.com",
      "phoneNumber": "+33612345678",
      "jobTitle": "Account Executive",
      "jobDepartment": "Sales",
      "role": "user",
      "timezone": "Europe/Paris",
      "createdOn": "2024-06-15T14:30:00.000Z",
      "modifiedOn": "2024-06-15T15:00:00.000Z"
    }
  ],
  "pagination": {
    "page": 1,
    "size": 25,
    "total": 100
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.