View the list of requesters
URL
https://sdpondemand.manageengine.com/api/json/requester
Method
HTTP POST
API description
Displays the list of requesters in the ServiceDesk Plus On-Demand application
Parameters to be passed
authtoken, scope, OPERATION_NAME (value is GET_REQUESTERS) and INPUT_DATA
Sample INPUT_DATA:
{
"operation": {
"Details": {
"SEARCHSTRING": "C",
"FROM": "1",
"noOfRows": 50
}
}
}
Sample Request:
curl -d "scope=sdpodapi&authtoken=e6e18385feaac81354f86958720e1114&OPERATION_NAME=GET_REQUESTERS&
INPUT_DATA={operation:{Details:{SEARCHSTRING:C}}}" https://sdpondemand.manageengine.com/api/json/requester
Sample Response:
{
"operation": {
"name": "GET_REQUESTERS",
"result": {
"status": "Success",
"message": "Requesters retrieved successfully"
},
"totalRows": 1,
"Details": [
{
"REQUESTERID": "2000000070001",
"REQUESTERSITE": "",
"REQUESTERDEPT": "",
"REQUESTERNAME": "Chris Cullen"
}
]
}
}