POST api/DeleteAttachment
Request Information
URI Parameters
None.
Body Parameters
DeleteAttachmentInputName | Description | Type | Additional information |
---|---|---|---|
DocumentID | integer |
None. |
|
WorkflowID | integer |
None. |
|
ReferenceNo | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "DocumentID": 1, "WorkflowID": 2, "ReferenceNo": "sample string 3" }
application/xml, text/xml
Sample:
<DeleteAttachmentInput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <DocumentID>1</DocumentID> <WorkflowID>2</WorkflowID> <ReferenceNo>sample string 3</ReferenceNo> </DeleteAttachmentInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReturnObjectOfInt64Name | Description | Type | Additional information |
---|---|---|---|
IsSuccess | boolean |
None. |
|
Messages | Collection of string |
None. |
|
ErrorCode | integer |
None. |
|
Response | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "IsSuccess": true, "Messages": [ "sample string 1", "sample string 2" ], "ErrorCode": 2, "Response": 3 }
application/xml, text/xml
Sample:
<ReturnObjectOfInt64 xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <IsSuccess>true</IsSuccess> <Messages> <string>sample string 1</string> <string>sample string 2</string> </Messages> <ErrorCode>2</ErrorCode> <Response>3</Response> </ReturnObjectOfInt64>