POST api/Admission/LoadStudentDetailsById
Request Information
URI Parameters
None.
Body Parameters
StudentViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| studentmasterid | integer |
None. |
|
| grnumber | integer |
None. |
|
| studentname | string |
None. |
|
| dob | date |
None. |
|
| admissiondate | date |
None. |
|
| genderid | integer |
None. |
|
| standardid | integer |
None. |
|
| divisionid | integer |
None. |
|
| nationality | string |
None. |
|
| admissiontypeid | integer |
None. |
|
| discountid | integer |
None. |
|
| fathername | string |
None. |
|
| mothername | string |
None. |
|
| fatherphoneno | string |
None. |
|
| motherphoneno | string |
None. |
|
| fatheroccupationid | string |
None. |
|
| motheroccupationid | string |
None. |
|
| fatheremail | string |
None. |
|
| motheremail | string |
None. |
|
| fatherorganizationname | string |
None. |
|
| motherorganizationname | string |
None. |
|
| fulladdress | string |
None. |
|
| postalcode | string |
None. |
|
| city | string |
None. |
|
| stateid | integer |
None. |
|
| country | string |
None. |
|
| batchid | integer |
None. |
|
| istransport | boolean |
None. |
|
| isattended | boolean |
None. |
|
| hassibling | boolean |
None. |
|
| academicyearid | integer |
None. |
|
| companymasterid | integer |
None. |
|
| companycode | integer |
None. |
|
| admissionyearid | integer |
None. |
|
| _local | date |
None. |
|
| _local2 | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"_local": "2026-07-11T22:52:21.4240328+05:30",
"_local2": "2026-07-11T22:52:21.4240328+05:30",
"studentmasterid": 1,
"grnumber": 1,
"studentname": "sample string 1",
"dob": "2026-07-11T22:52:21.4240328+05:30",
"admissiondate": "2026-07-11T22:52:21.4240328+05:30",
"genderid": 1,
"standardid": 1,
"divisionid": 4,
"nationality": "sample string 5",
"admissiontypeid": 1,
"discountid": 1,
"fathername": "sample string 6",
"mothername": "sample string 7",
"fatherphoneno": "sample string 8",
"motherphoneno": "sample string 9",
"fatheroccupationid": "sample string 10",
"motheroccupationid": "sample string 11",
"fatheremail": "sample string 12",
"motheremail": "sample string 13",
"fatherorganizationname": "sample string 14",
"motherorganizationname": "sample string 15",
"fulladdress": "sample string 16",
"postalcode": "sample string 17",
"city": "sample string 18",
"stateid": 1,
"country": "sample string 19",
"batchid": 1,
"istransport": true,
"isattended": true,
"hassibling": true,
"academicyearid": 1,
"companymasterid": 1,
"companycode": 1,
"admissionyearid": 20
}
application/xml, text/xml
Sample:
<StudentViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/vcareapi.Models"> <_local>2026-07-11T22:52:21.4240328+05:30</_local> <_local2>2026-07-11T22:52:21.4240328+05:30</_local2> <academicyearid>1</academicyearid> <admissiondate>2026-07-11T22:52:21.4240328+05:30</admissiondate> <admissiontypeid>1</admissiontypeid> <admissionyearid>20</admissionyearid> <batchid>1</batchid> <city>sample string 18</city> <companycode>1</companycode> <companymasterid>1</companymasterid> <country>sample string 19</country> <discountid>1</discountid> <divisionid>4</divisionid> <dob>2026-07-11T22:52:21.4240328+05:30</dob> <fatheremail>sample string 12</fatheremail> <fathername>sample string 6</fathername> <fatheroccupationid>sample string 10</fatheroccupationid> <fatherorganizationname>sample string 14</fatherorganizationname> <fatherphoneno>sample string 8</fatherphoneno> <fulladdress>sample string 16</fulladdress> <genderid>1</genderid> <grnumber>1</grnumber> <hassibling>true</hassibling> <isattended>true</isattended> <istransport>true</istransport> <motheremail>sample string 13</motheremail> <mothername>sample string 7</mothername> <motheroccupationid>sample string 11</motheroccupationid> <motherorganizationname>sample string 15</motherorganizationname> <motherphoneno>sample string 9</motherphoneno> <nationality>sample string 5</nationality> <postalcode>sample string 17</postalcode> <standardid>1</standardid> <stateid>1</stateid> <studentmasterid>1</studentmasterid> <studentname>sample string 1</studentname> </StudentViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResultViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| status | boolean |
None. |
|
| message | string |
None. |
|
| data | Object |
None. |
|
| errorCode | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": true,
"message": "sample string 2",
"data": {},
"errorCode": 4
}
application/xml, text/xml
Sample:
<HttpResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/vcareapi.Models"> <data /> <errorCode>4</errorCode> <message>sample string 2</message> <status>true</status> </HttpResultViewModel>