Get User List

QMetry 7QMetry 8
  • URL: /rest/admin/user/list
  • Method: POST
  • URL: /rest/admin/user/list
  • Method: POST
Request Body
{
	"page":1,
	"start":0,
	"limit":60
}
Request Body
{
  "start": 0,
  "limit": 50,
  "extparams": {
    "showInActive": true
  },
  "page": 1
}
Response Body
{
  "data": [
    {
      "userID": 8428,
      "loginId": "john",
      "userAlias": "john",
      "firstName": "John",
      "lastName": "Doe",
      "email": "john.doe@qmetry.com",
      "isActive": true,
      "authType": "QMETRY",
      "userType": 1
    },
    {
      "userID": 8494,
      "loginId": "jane",
      "userAlias": "jane",
      "firstName": "John",
      "lastName": "Doe",
      "email": "jane.doe@qmetry.com",
      "isActive": true,
      "authType": "QMETRY",
      "tag": "Production_Support",
      "userType": 1
    },
  ],
  "total": 2
}
Response Body
{
  "data": [
    {
      "userID": 3186,
      "loginId": "John",
      "userAlias": "John",
      "firstName": "John",
      "lastName": "Doe",
      "email": "john.doe@qmetry.com",
      "isActive": true,
      "authType": "QMETRY",
      "userType": 1,
      "isSysAdmin": false
    },
    {
      "userID": 3091,
      "loginId": "jane",
      "userAlias": "jane",
      "firstName": "Jane",
      "lastName": "Doe",
      "email": "jane.doe@qmetry.com",
      "isActive": true,
      "authType": "QMETRY",
      "userType": 1,
      "isSysAdmin": false
    }
  ],
  "total": 2
}