Get Members by Team Id - GET /Teams/{id}/Users



Get details of all team members according to team Id.

Usage:

  1. GET / Teams/{id}/Users and get details of all team members
  2. PUT /Teams/{teamId}/Users and update team member details

URL

/cxrestapi/auth/Teams/{id}/Users

Method:

GET

Media Type (header):

Authorization: Bearer <access token value>
Accept: application/json;v=1.0

Parameters

Required:

id=[integer] – Unique Id of the Team

Success Response:

Code: 200 Success

Error Response:

Code: 401 Unauthorized
Code: 403 Forbidden
Code: 404 Not Found

Sample Response:

[
  {
    "id": 1,
    "userName": "check.admin",
    "lastLoginDate": "2018-07-17T07:32:05.3405064Z",
    "roleIds": [
      1
    ],
    "teamIds": [
      1
    ],
    "authenticationProviderId": 1,
    "firstName": "James",
    "lastName": "Smith",
    "email": "admin@check.org",
    "phoneNumber": null,
    "cellPhoneNumber": null,
    "jobTitle": null,
    "other": null,
    "country": null,
    "active": true,
    "expirationDate": "2021-07-15T08:02:08.5414508Z",
    "allowedIpList": [],
    "localeId": 1
  }
]

Notes:

Retrieves team member details according to the specified team Id. If the request fails, it returns an error response.




Send Documentation Feedback - If you have comments about this documentation, you can contact the documentation team by sending your feedback to usWe appreciate your feedback!