Edit a note in a request
URL
https://sdpondemand.manageengine.com/api/json/request/REQUEST_ID/notes/NOTESID
Method
HTTP POST
API description
Adds a request in the ServiceDesk Plus On-Demand application
Parameters to be passed
authtoken, scope, OPERATION_NAME (value is EDIT_NOTE) and INPUT_DATA
Sample INPUT_DATA:
{
"operation": {
"Details": {
"NOTESTEXT": "testing",
"ISPUBLIC": "yes",
"NOTIFYTECH": "yes"
}
}
}
Sample Request:
curl -d "authtoken=860608382173c3a027f8e1273fb22101&OPERATION_NAME=EDIT_NOTE&scope=sdpodapi&
INPUT_DATA={operation:{Details:{NOTESTEXT:testing,NOTIFYTECH:yes, ISPUBLIC:yes}}}"
https://sdpondemand.manageengine.com/api/json/request/10/notes/ 2000000124159
Sample Response:
{
"operation": {
"name": "EDIT_NOTE",
"result": {
"status": "Success",
"message": "Note 2000000124159 successfully edited for request"
},
"Details" : {
"NOTESID": "2000000124159",
"NOTESDATE":"1320668123937"
}
}
}