POST api/FlowCheck/SaveFlowCheckDetail
Request Information
URI Parameters
None.
Body Parameters
FlowCheckDetailDataObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| FlowId | string |
None. |
|
| Abstract | string |
None. |
|
| Money | decimal number |
None. |
|
| Subject | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"flowId": "sample string 2",
"abstract": "sample string 3",
"money": 4.0,
"subject": "sample string 5"
}
application/xml, text/xml
Sample:
<FlowCheckDetailDataObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Id>1</Id> <FlowId>sample string 2</FlowId> <Abstract>sample string 3</Abstract> <Money>4</Money> <Subject>sample string 5</Subject> </FlowCheckDetailDataObject>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonResultObject| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSucceed | boolean |
None. |
|
| Remark | string |
None. |
|
| OpTime | string |
None. |
|
| Result | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"isSucceed": true,
"remark": "sample string 2",
"opTime": "sample string 3",
"result": {}
}
application/xml, text/xml
Sample:
<JsonResultObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <IsSucceed>true</IsSucceed> <Remark>sample string 2</Remark> <OpTime>sample string 3</OpTime> <Result /> </JsonResultObject>