POST api/DelegateWorkflowbyAdmin
Request Information
URI Parameters
None.
Body Parameters
DelegateWorkflow| Name | Description | Type | Additional information |
|---|---|---|---|
| ReferenceNo | string |
None. |
|
| WorkflowId | integer |
None. |
|
| EmailId | string |
Required |
|
| Name | string |
Required |
|
| Reason | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"ReferenceNo": "sample string 1",
"WorkflowId": 2,
"EmailId": "sample string 3",
"Name": "sample string 4",
"Reason": "sample string 5"
}
application/xml, text/xml
Sample:
<DelegateWorkflow xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ReferenceNo>sample string 1</ReferenceNo> <WorkflowId>2</WorkflowId> <EmailId>sample string 3</EmailId> <Name>sample string 4</Name> <Reason>sample string 5</Reason> </DelegateWorkflow>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReturnObjectOfBoolean| Name | 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>