POST api/StudentReq/Save
Request Information
URI Parameters
None.
Body Parameters
StudentReqSaveVM| Name | Description | Type | Additional information |
|---|---|---|---|
| EntryDate | string |
Required |
|
| StudentId | integer |
Required |
|
| StudentName | string |
Required String length: inclusive between 0 and 250 |
|
| Code | string |
Required String length: inclusive between 0 and 30 |
|
| Gender | string |
Required |
|
| Dob | string |
None. |
|
| Address1 | string |
Required String length: inclusive between 0 and 200 |
|
| Address2 | string |
Required String length: inclusive between 0 and 200 |
|
| AddressPincode | string |
String length: inclusive between 0 and 50 |
|
| AddressPlace | string |
String length: inclusive between 0 and 100 |
|
| AddressPostOffice | PlaceLookupVM |
None. |
|
| AddressDistrict | PlaceLookupVM |
None. |
|
| AddressState | PlaceLookupVM |
None. |
|
| AddressCountry | PlaceLookupVM |
None. |
|
| GuardianName | string |
Required String length: inclusive between 0 and 100 |
|
| Occupation | OccupationLookupVM |
None. |
|
| Grade | GradeLookupVM |
Required |
|
| Language | LanguageLookupVM |
Required |
|
| FavColor | string |
String length: inclusive between 0 and 100 |
|
| FavGame | string |
String length: inclusive between 0 and 100 |
|
| HobbyDesc | string |
String length: inclusive between 0 and 250 |
|
| TalentDesc | string |
String length: inclusive between 0 and 500 |
|
| AchieveDesc | string |
String length: inclusive between 0 and 2000 |
|
| OthRemarks | string |
String length: inclusive between 0 and 2000 |
|
| Project | ProjectLookupVM |
Required |
|
| Agency | AgencyLookupVM |
Required |
|
| CreateUser | integer |
Required |
|
| CreateIp | string |
Required String length: inclusive between 0 and 20 |
|
| AadharNum | string |
String length: inclusive between 0 and 50 |
Request Formats
application/json, text/json
{
"EntryDate": "sample string 1",
"StudentId": 2,
"StudentName": "sample string 3",
"Code": "sample string 4",
"Gender": "sample string 5",
"Dob": "sample string 6",
"Address1": "sample string 7",
"Address2": "sample string 8",
"AddressPincode": "sample string 9",
"AddressPlace": "sample string 10",
"AddressPostOffice": {
"PlaceId": 1,
"PlaceName": "sample string 2"
},
"AddressDistrict": {
"PlaceId": 1,
"PlaceName": "sample string 2"
},
"AddressState": {
"PlaceId": 1,
"PlaceName": "sample string 2"
},
"AddressCountry": {
"PlaceId": 1,
"PlaceName": "sample string 2"
},
"GuardianName": "sample string 11",
"Occupation": {
"OccupationId": 1,
"OccupationName": "sample string 2"
},
"Grade": {
"GradeId": 1,
"GradeName": "sample string 2"
},
"Language": {
"LanguageId": 1,
"LanguageName": "sample string 2"
},
"FavColor": "sample string 12",
"FavGame": "sample string 13",
"HobbyDesc": "sample string 14",
"TalentDesc": "sample string 15",
"AchieveDesc": "sample string 16",
"OthRemarks": "sample string 17",
"Project": {
"ProjectId": 1,
"ProjectName": "sample string 2"
},
"Agency": {
"AgencyId": 1,
"AgencyName": "sample string 2"
},
"CreateUser": 18,
"CreateIp": "sample string 19",
"AadharNum": "sample string 20"
}
application/xml, text/xml
<StudentReqSaveVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
<AadharNum>sample string 20</AadharNum>
<AchieveDesc>sample string 16</AchieveDesc>
<Address1>sample string 7</Address1>
<Address2>sample string 8</Address2>
<AddressCountry>
<PlaceId>1</PlaceId>
<PlaceName>sample string 2</PlaceName>
</AddressCountry>
<AddressDistrict>
<PlaceId>1</PlaceId>
<PlaceName>sample string 2</PlaceName>
</AddressDistrict>
<AddressPincode>sample string 9</AddressPincode>
<AddressPlace>sample string 10</AddressPlace>
<AddressPostOffice>
<PlaceId>1</PlaceId>
<PlaceName>sample string 2</PlaceName>
</AddressPostOffice>
<AddressState>
<PlaceId>1</PlaceId>
<PlaceName>sample string 2</PlaceName>
</AddressState>
<Agency>
<AgencyId>1</AgencyId>
<AgencyName>sample string 2</AgencyName>
</Agency>
<Code>sample string 4</Code>
<CreateIp>sample string 19</CreateIp>
<CreateUser>18</CreateUser>
<Dob>sample string 6</Dob>
<EntryDate>sample string 1</EntryDate>
<FavColor>sample string 12</FavColor>
<FavGame>sample string 13</FavGame>
<Gender>sample string 5</Gender>
<Grade>
<GradeId>1</GradeId>
<GradeName>sample string 2</GradeName>
</Grade>
<GuardianName>sample string 11</GuardianName>
<HobbyDesc>sample string 14</HobbyDesc>
<Language>
<LanguageId>1</LanguageId>
<LanguageName>sample string 2</LanguageName>
</Language>
<Occupation>
<OccupationId>1</OccupationId>
<OccupationName>sample string 2</OccupationName>
</Occupation>
<OthRemarks>sample string 17</OthRemarks>
<Project>
<ProjectId>1</ProjectId>
<ProjectName>sample string 2</ProjectName>
</Project>
<StudentId>2</StudentId>
<StudentName>sample string 3</StudentName>
<TalentDesc>sample string 15</TalentDesc>
</StudentReqSaveVM>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample not available.