POST api/RecallWorkflow
Request Information
URI Parameters
None.
Body Parameters
RecallInputName | Description | Type | Additional information |
---|---|---|---|
WorkflowId | integer |
None. |
|
Remarks | string |
Required |
|
ReferenceNo | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "WorkflowId": 1, "Remarks": "sample string 2", "ReferenceNo": "sample string 3" }
application/xml, text/xml
Sample:
<RecallInput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <WorkflowId>1</WorkflowId> <Remarks>sample string 2</Remarks> <ReferenceNo>sample string 3</ReferenceNo> </RecallInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReturnObjectOfBooleanName | Description | Type | Additional information |
---|---|---|---|
IsSuccess | boolean |
None. |
|
Messages | Collection of string |
None. |
|
ErrorCode | integer |
None. |
|
Response | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "IsSuccess": true, "Messages": [ "sample string 1", "sample string 2" ], "ErrorCode": 2, "Response": true }
application/xml, text/xml
Sample:
<ReturnObjectOfBoolean 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>true</Response> </ReturnObjectOfBoolean>