View all the notes in a request
URL
https://sdpondemand.manageengine.com/api/json/request/REQUEST_ID/notes
Method
HTTP POST
API description
Retrieves all notes in a request in the ServiceDesk Plus On-Demand application
Parameters to be passed
authtoken, scope, OPERATION_NAME (value is GET_NOTES )
Sample Request:
curl -d "authtoken=860608382173c3a027f8e1273fb22101&OPERATION_NAME=GET_NOTES&scope=sdpodapi"
https://sdpondemand.manageengine.com/api/json/request/10/notes
Sample Response:
{
"operation": {
"name": "GET_NOTES",
"result": {
"status": "Success",
"message": "Notes details fetched successfully"
},
"Details": [
{
"NOTESID": "2000000124159",
"ISPUBLIC": "true",
"NOTESTEXT": "my note for testing",
"USERNAME": "Chris Cullen",
"NOTESDATE": "1320667550289"
}
]
}
}