Saves an attachment
URL
https://sdpondemand.manageengine.com/api/json/attach
Method
HTTP POST
API description
Allows a technician to upload an attachment to the ServiceDesk Plus On-Demand application. A file ID will be returned on successful upload. This file ID can be used while adding a request so that the uploaded attachment is associated to the request.
Parameters to be passed
authtoken, scope, OPERATION_NAME (value is SAVE_ATTACHMENT)
Use multi-part post and give the parameter name as "filename" while writing the contents of the file.
Sample Response:
{
"operation":{
"name":"SAVE_ATTACHMENT",
"result":{
"status":"Success",
"message":"Attachment saved successfully"
},
"Details":{
"FILENAME": "test.csv",
"FILEID" : "1005"
}
}
}