GET api/Student/PersonalDetails
Get student personal information
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
StdPersonalDetailModels| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentId |
Unique RTO student identifier |
string |
Required |
| UserName |
RTO student user name to be used to login to RTOManager system |
string |
None. |
| Title |
Name title. Follow EnumPerson.Title classification |
Title |
Required |
| FirstName |
Student first/given name |
string |
Required |
| LastName |
Student last/surname |
string |
Required |
| Gender |
Gender abbreviation (M, F, X). Follow EnumPerson.Gender classification. |
Gender |
Required |
| DoB |
Date of birth (expected dd/mm/yyyy format) |
date |
Required Data type: Date |
| CountryBirth |
Country of birth |
string |
Required |
| Nationality |
Nationality |
string |
Required |
|
Primary contact email address |
string |
Required Data type: EmailAddress |
|
| CollegeEmail |
Student college email address |
string |
Data type: EmailAddress |
| Phone |
Contact phone |
string |
Data type: PhoneNumber |
| WorkPhone |
Work phone |
string |
Data type: PhoneNumber |
| Mobile |
Mobile number |
string |
Data type: PhoneNumber |
| BuildingPropertyName |
Primary contact address - Building/Property name |
string |
None. |
| FlatUnitDetails |
Primary contact address - Flat/Unit details |
string |
None. |
| StreetNumber |
Primary contact address - Street number |
string |
Required |
| StreetName |
Primary contact address - Street name |
string |
Required |
| Suburb |
Primary contact address - Suburb |
string |
Required |
| State |
Primary contact address - State |
string |
Required |
| PostCode |
Primary contact address - Postcode |
string |
Required |
| Country |
Primary contact address - Country |
string |
Required |
Response Formats
application/json, text/json
{
"StudentId": "sample string 1",
"UserName": "sample string 2",
"Title": "Mr",
"FirstName": "sample string 3",
"LastName": "sample string 4",
"Gender": "M",
"DoB": "2025-11-01T13:48:27.8183299+11:00",
"CountryBirth": "sample string 6",
"Nationality": "sample string 7",
"Email": "sample string 8",
"CollegeEmail": "sample string 9",
"Phone": "sample string 10",
"WorkPhone": "sample string 11",
"Mobile": "sample string 12",
"BuildingPropertyName": "sample string 13",
"FlatUnitDetails": "sample string 14",
"StreetNumber": "sample string 15",
"StreetName": "sample string 16",
"Suburb": "sample string 17",
"State": "sample string 18",
"PostCode": "sample string 19",
"Country": "sample string 20"
}
application/xml, text/xml
<StdPersonalDetailModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileApp_WebAPI.Models.Students"> <BuildingPropertyName>sample string 13</BuildingPropertyName> <CollegeEmail>sample string 9</CollegeEmail> <Country>sample string 20</Country> <CountryBirth>sample string 6</CountryBirth> <DoB>2025-11-01T13:48:27.8183299+11:00</DoB> <Email>sample string 8</Email> <FirstName>sample string 3</FirstName> <FlatUnitDetails>sample string 14</FlatUnitDetails> <Gender>M</Gender> <LastName>sample string 4</LastName> <Mobile>sample string 12</Mobile> <Nationality>sample string 7</Nationality> <Phone>sample string 10</Phone> <PostCode>sample string 19</PostCode> <State>sample string 18</State> <StreetName>sample string 16</StreetName> <StreetNumber>sample string 15</StreetNumber> <StudentId>sample string 1</StudentId> <Suburb>sample string 17</Suburb> <Title>Mr</Title> <UserName>sample string 2</UserName> <WorkPhone>sample string 11</WorkPhone> </StdPersonalDetailModels>