Home / Users / View Technician List

View Technician List


View the list of technicians 

URL
https://sdpondemand.manageengine.com/api/json/technician

Method
HTTP POST

API description
Displays the list of technicians available in a site or in a group

Parameters to be passed
authtoken, scope, OPERATION_NAME (value is GET_TECHNICIANS) and INPUT_DATA

Sample INPUT_DATA:

{
   "operation": {
      "Details": {
         "GROUPID": "200",
      }
   }
}

Note :SITENAME or GROUPID can be passed in the input data to get the list of technicians in a specific site or a Group. INPUT_DATA is optional for the api. If not given, the api will return all technicians.

Sample Request:

curl -d "scope=sdpodapi&authtoken=e6e18385feaac81354f86958720e1114&OPERATION_NAME=GET_TECHNICIANS" 
https://sdpondemand.manageengine.com/api/json/technician

Sample Response:

{
   "operation": {
      "name": "GET_TECHNICIANS",
      "result": {
         "status": "Success",
         "message": "Technicians retrieved successfully"
      },
      "totalRows": 2,
      "Details": [
         {
            "TECHNICIANNAME": "Chris Cullen",
            "TECHNICIANID": "2000000117001"
         },
         {
            "TECHNICIANNAME": "tech1",
            "TECHNICIANID": "2000000070001"
         },         
      ]
   }
}



     RSS of this page