Home / API Documentation

Get Employees List By Company

Method: GET api/v1/Employees/GetEmployeesListByCompany?companyid={companyid}&page={page}&pagelimit={pagelimit}

Response Format:

application/json

Required Parameters Description Additional information
companyid

Define this parameter in the request URI.

page

Define this parameter in the request URI.

pagelimit

Define this parameter in the request URI.

application/json, text/json

Sample Response:
                        [
  {
    "employeeid": 1,
    "companyid": 2,
    "employeefirstname": "sample string 3",
    "employeelastname": "sample string 4",
    "istechnician": true,
    "isactive": true,
    "utclastchanged": "2025-02-23T06:26:36.7179732+00:00",
    "lastchangedby": "sample string 5",
    "utctimestamp": "2025-02-23T06:26:36.7179732+00:00",
    "phonenumber": "sample string 6",
    "emailaddress": "sample string 7"
  },
  {
    "employeeid": 1,
    "companyid": 2,
    "employeefirstname": "sample string 3",
    "employeelastname": "sample string 4",
    "istechnician": true,
    "isactive": true,
    "utclastchanged": "2025-02-23T06:26:36.7179732+00:00",
    "lastchangedby": "sample string 5",
    "utctimestamp": "2025-02-23T06:26:36.7179732+00:00",
    "phonenumber": "sample string 6",
    "emailaddress": "sample string 7"
  }
];