POST api/StudentStatusHistory/Save
Request Information
URI Parameters
None.
Body Parameters
StudentStatusHistorySaveVM| Name | Description | Type | Additional information |
|---|---|---|---|
| Slno | integer |
Required |
|
| StudentStatus | StudentStatusLookupVM |
Required |
|
| StartDate | string |
None. |
|
| EndDate | string |
None. |
|
| Remarks | string |
String length: inclusive between 0 and 100 |
|
| 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:
{
"Slno": 1,
"StudentStatus": {
"StudentStatusId": 1,
"StudentStatusName": "sample string 2"
},
"StartDate": "sample string 2",
"EndDate": "sample string 3",
"Remarks": "sample string 4",
"Status": "sample string 5",
"CreateUser": 6,
"CreateIp": "sample string 7"
}
application/xml, text/xml
Sample:
<StudentStatusHistorySaveVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
<CreateIp>sample string 7</CreateIp>
<CreateUser>6</CreateUser>
<EndDate>sample string 3</EndDate>
<Remarks>sample string 4</Remarks>
<Slno>1</Slno>
<StartDate>sample string 2</StartDate>
<Status>sample string 5</Status>
<StudentStatus>
<StudentStatusId>1</StudentStatusId>
<StudentStatusName>sample string 2</StudentStatusName>
</StudentStatus>
</StudentStatusHistorySaveVM>
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.