POST api/StudentRemarkEntry/Save
Request Information
URI Parameters
None.
Body Parameters
StudentRemarkEntrySaveVM| Name | Description | Type | Additional information |
|---|---|---|---|
| EntryDate | string |
Required |
|
| Student | StudentLookupVM |
Required |
|
| StdRemarkType | StudentRemarkTypeLookupVM |
Required |
|
| Remarks | string |
String length: inclusive between 0 and 4000 |
|
| Status | string |
Required Matching regular expression pattern: A|I |
|
| CreateUser | integer |
Required |
|
| CreateIp | string |
Required String length: inclusive between 0 and 20 |
Request Formats
application/json, text/json
Sample:
{
"EntryDate": "sample string 1",
"Student": {
"StudentId": 1,
"StudentName": "sample string 2",
"GuardianName": "sample string 3"
},
"StdRemarkType": {
"StdRemTypeId": 1,
"StdRemTypeName": "sample string 2"
},
"Remarks": "sample string 2",
"Status": "sample string 3",
"CreateUser": 4,
"CreateIp": "sample string 5"
}
application/xml, text/xml
Sample:
<StudentRemarkEntrySaveVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
<CreateIp>sample string 5</CreateIp>
<CreateUser>4</CreateUser>
<EntryDate>sample string 1</EntryDate>
<Remarks>sample string 2</Remarks>
<Status>sample string 3</Status>
<StdRemarkType>
<StdRemTypeId>1</StdRemTypeId>
<StdRemTypeName>sample string 2</StdRemTypeName>
</StdRemarkType>
<Student>
<GuardianName>sample string 3</GuardianName>
<StudentId>1</StudentId>
<StudentName>sample string 2</StudentName>
</Student>
</StudentRemarkEntrySaveVM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.