POST api/ImplementationPlan/EvaluatePlan
Request Information
URI Parameters
None.
Body Parameters
EvaluatePlanDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| FKPlanId | integer |
None. |
|
| FKResolveId | integer |
None. |
|
| Id | integer |
None. |
|
| Descr | string |
String length: inclusive between 0 and 2000 |
|
| Point | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"FKPlanId": 1,
"FKResolveId": 2,
"Id": 3,
"Descr": "sample string 4",
"Point": 1.0
}
application/octet-stream
Sample:
{"FKPlanId":1,"FKResolveId":2,"Id":3,"Descr":"sample string 4","Point":1.0}
Response Information
Resource Description
CResult| Name | Description | Type | Additional information |
|---|---|---|---|
| retType | integer |
None. |
|
| retDesc | string |
None. |
|
| retData | Object |
None. |
|
| retParams | Collection of Object |
None. |
|
| affectedRows | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"retType": 1,
"retDesc": "sample string 2",
"retData": {},
"retParams": [
{},
{}
],
"affectedRows": 4
}
application/octet-stream
Sample:
{"retType":1,"retDesc":"sample string 2","retData":{},"retParams":[{},{}],"affectedRows":4}