GET api/EnGetStudentProfile?StudentId={StudentId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
StudentId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StudentProfileName | Description | Type | Additional information |
---|---|---|---|
studentid | integer |
None. |
|
RegistrationNo | integer |
None. |
|
LastName | string |
None. |
|
FirstName | string |
None. |
|
MiddleName | string |
None. |
|
MotherName | string |
None. |
|
CasteId | integer |
None. |
|
CastegoryId | integer |
None. |
|
RollNo | integer |
None. |
|
MobileNo | string |
None. |
|
Caste | string |
None. |
|
Category | string |
None. |
Response Formats
application/json, text/json, text/html
Sample:
[ { "studentid": 1, "registrationNo": 2, "lastName": "sample string 3", "firstName": "sample string 4", "middleName": "sample string 5", "motherName": "sample string 6", "casteId": 7, "castegoryId": 8, "rollNo": 9, "mobileNo": "sample string 10", "caste": "sample string 11", "category": "sample string 12" }, { "studentid": 1, "registrationNo": 2, "lastName": "sample string 3", "firstName": "sample string 4", "middleName": "sample string 5", "motherName": "sample string 6", "casteId": 7, "castegoryId": 8, "rollNo": 9, "mobileNo": "sample string 10", "caste": "sample string 11", "category": "sample string 12" } ]
application/xml, text/xml
Sample:
<ArrayOfStudentProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Web_Api.App_Start.Entity"> <StudentProfile> <Caste>sample string 11</Caste> <CasteId>7</CasteId> <CastegoryId>8</CastegoryId> <Category>sample string 12</Category> <FirstName>sample string 4</FirstName> <LastName>sample string 3</LastName> <MiddleName>sample string 5</MiddleName> <MobileNo>sample string 10</MobileNo> <MotherName>sample string 6</MotherName> <RegistrationNo>2</RegistrationNo> <RollNo>9</RollNo> <studentid>1</studentid> </StudentProfile> <StudentProfile> <Caste>sample string 11</Caste> <CasteId>7</CasteId> <CastegoryId>8</CastegoryId> <Category>sample string 12</Category> <FirstName>sample string 4</FirstName> <LastName>sample string 3</LastName> <MiddleName>sample string 5</MiddleName> <MobileNo>sample string 10</MobileNo> <MotherName>sample string 6</MotherName> <RegistrationNo>2</RegistrationNo> <RollNo>9</RollNo> <studentid>1</studentid> </StudentProfile> </ArrayOfStudentProfile>