POST api/ImplementationPlan/ModInterviewNote
Request Information
URI Parameters
None.
Body Parameters
InterviewNoteDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| InterviewDate | date |
None. |
|
| Type | integer |
None. |
|
| FKUserOid | string |
None. |
|
| Descr | string |
None. |
|
| Items | Collection of InterviewNoteItemDTO |
None. |
|
| RowStatus | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"InterviewDate": "2025-12-15T03:26:37.9061272+08:00",
"Type": 3,
"FKUserOid": "sample string 4",
"Descr": "sample string 5",
"Items": [
{
"Id": 1,
"FKPlanId": 2,
"Status": 3,
"Note": "sample string 4",
"RowStatus": "sample string 5"
},
{
"Id": 1,
"FKPlanId": 2,
"Status": 3,
"Note": "sample string 4",
"RowStatus": "sample string 5"
}
],
"RowStatus": "sample string 6"
}
application/octet-stream
Sample:
{"Id":1,"InterviewDate":"2025-12-15T03:26:37.9061272+08:00","Type":3,"FKUserOid":"sample string 4","Descr":"sample string 5","Items":[{"Id":1,"FKPlanId":2,"Status":3,"Note":"sample string 4","RowStatus":"sample string 5"},{"Id":1,"FKPlanId":2,"Status":3,"Note":"sample string 4","RowStatus":"sample string 5"}],"RowStatus":"sample string 6"}
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}