POST api/RebuttalWorkflow/SaveWorkflow
Request Information
URI Parameters
None.
Body Parameters
TaskWorkflowModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TaskId | integer |
None. |
|
| WorkflowJsonData | string |
None. |
|
| OperatingUserId | string |
None. |
|
| IsTaskCommentRequired | boolean |
None. |
|
| TaskComment | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TaskId": 1,
"WorkflowJsonData": "sample string 2",
"OperatingUserId": "sample string 3",
"IsTaskCommentRequired": true,
"TaskComment": "sample string 5"
}
text/html
Sample:
{"TaskId":1,"WorkflowJsonData":"sample string 2","OperatingUserId":"sample string 3","IsTaskCommentRequired":true,"TaskComment":"sample string 5"}
application/xml, text/xml
Sample:
<TaskWorkflowModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATLAS_Business.Entities.TaskWorkflow"> <IsTaskCommentRequired>true</IsTaskCommentRequired> <OperatingUserId>sample string 3</OperatingUserId> <TaskComment>sample string 5</TaskComment> <TaskId>1</TaskId> <WorkflowJsonData>sample string 2</WorkflowJsonData> </TaskWorkflowModel>
multipart/form-data
Sample:
<TaskWorkflowModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATLAS_Business.Entities.TaskWorkflow"><IsTaskCommentRequired>true</IsTaskCommentRequired><OperatingUserId>sample string 3</OperatingUserId><TaskComment>sample string 5</TaskComment><TaskId>1</TaskId><WorkflowJsonData>sample string 2</WorkflowJsonData></TaskWorkflowModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseData| Name | Description | Type | Additional information |
|---|---|---|---|
| MessageCode | string |
None. |
|
| MessageText | string |
None. |
|
| MessageType | EnumMessageType |
None. |
|
| HasException | boolean |
None. |
|
| Exception | string |
None. |
|
| Data | Collection of Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"MessageCode": "sample string 1",
"MessageText": "sample string 2",
"MessageType": 1,
"HasException": true,
"Exception": "sample string 4",
"Data": [
{},
{}
]
}
text/html
Sample:
{"MessageCode":"sample string 1","MessageText":"sample string 2","MessageType":1,"HasException":true,"Exception":"sample string 4","Data":[{},{}]}
application/xml, text/xml
Sample:
<ResponseData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATLAS_Business.Entities.Common">
<Data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:anyType />
<d2p1:anyType />
</Data>
<Exception>sample string 4</Exception>
<HasException>true</HasException>
<MessageCode>sample string 1</MessageCode>
<MessageText>sample string 2</MessageText>
<MessageType>OPERATION_SUCCESS</MessageType>
</ResponseData>
multipart/form-data
Sample:
<ResponseData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ATLAS_Business.Entities.Common"><Data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"><d2p1:anyType /><d2p1:anyType /></Data><Exception>sample string 4</Exception><HasException>true</HasException><MessageCode>sample string 1</MessageCode><MessageText>sample string 2</MessageText><MessageType>OPERATION_SUCCESS</MessageType></ResponseData>