REST API

QW_Delete_Attachment

OVERVIEW

This REST API helps to Delete the attachment from any of the work items.

Web Service URL : https://xxx.orcanos.com/xxxx/api/v2/Json/QW_Delete_Attachment

Method: Post

Input: 

Authorization: Basic Auth token in the Request Headers 

Post body:

Parameter Value Mandatory Description
ID String Yes Input the attachment ID you want to delete.(Refer to the screenshot below)
Version String Yes Input the Project version

 

 

 

 

 

 

 

 

 

 

Output:

{

      "IsSuccess": true,
      "Data": 
        {
        "Id": "3284",
        "Xmlns": null,
        "Text": null
         },
      "Message": "Delete attachment successfully.",
      "HttpCode": 200

}

IsSuccess: if successful then true else false

Data: JSON object. 

Message: Success message or Error message in case IsSuccess is false

HttpCode: Response HttpCode

Related Articles