GET api/v1/students/{studentId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| studentId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
GetStudentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Student | StudentModel |
None. |
|
| Parents | Collection of ParentModel |
None. |
|
| Phones | Collection of PhoneModel |
None. |
|
| YearRegistration | RegisterStudentToProgramModel |
None. |
|
| SchoolName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Student": {
"Id": 1,
"OperatorId": 2,
"FirstYearId": 3,
"FirstName": "sample string 4",
"LastName": "sample string 5",
"SocialSecurityNumber": "sample string 6",
"DateOfBirth": "2026-03-13T00:18:49.8763719+02:00",
"IsMale": true,
"Address": "sample string 8",
"Email": "sample string 9",
"SchoolId": 1,
"SchoolGradeId": 1,
"PhotoURL": "sample string 10",
"IsActive": true,
"ExternalId": "d673d43b-f375-4464-9253-a9e0e4b05456",
"RegistrationDate": "2026-03-13T00:18:49.8763719+02:00"
},
"Parents": [
{
"Id": 1,
"OperatorId": 2,
"Name": "sample string 3",
"SocialSecurityNumber": "sample string 4",
"Address": "sample string 5",
"Phone": "sample string 6",
"MobilePhone": "sample string 7",
"Email": "sample string 8",
"RelatedParentId": 1,
"IsDeleted": true
},
{
"Id": 1,
"OperatorId": 2,
"Name": "sample string 3",
"SocialSecurityNumber": "sample string 4",
"Address": "sample string 5",
"Phone": "sample string 6",
"MobilePhone": "sample string 7",
"Email": "sample string 8",
"RelatedParentId": 1,
"IsDeleted": true
}
],
"Phones": [
{
"OwnerId": "17ecd6b0-957f-47c7-8e14-b001e10d2d3a",
"Phone": "sample string 2",
"Id": 3,
"Type": 64
},
{
"OwnerId": "17ecd6b0-957f-47c7-8e14-b001e10d2d3a",
"Phone": "sample string 2",
"Id": 3,
"Type": 64
}
],
"YearRegistration": {
"YearId": 1,
"StudentId": 2,
"ProgramId": 3,
"ProgramPriceListId": 4,
"InstrumentPriceListId": 1,
"Status": 64,
"RegistrationResponse": "sample string 6",
"Created": "2026-03-13T00:18:49.8763719+02:00",
"CreatedBy": "b476fae2-6fe3-43a7-a151-164165ad492a",
"IsActive": true,
"FinancialDocumentReference": "89291ac1-4cc8-42dd-b037-f93d2264a644",
"Instruments": [
{
"InstrumentTypeId": 1,
"StudentId": 2,
"YearId": 3,
"ProgramId": 4,
"RankId": 5,
"RequiredRankId": 1,
"Created": "2026-03-13T00:18:49.8763719+02:00",
"Seniority": 7,
"YearDegree": 1
},
{
"InstrumentTypeId": 1,
"StudentId": 2,
"YearId": 3,
"ProgramId": 4,
"RankId": 5,
"RequiredRankId": 1,
"Created": "2026-03-13T00:18:49.8763719+02:00",
"Seniority": 7,
"YearDegree": 1
}
]
},
"SchoolName": "sample string 1"
}
application/xml, text/xml
Sample:
<GetStudentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Emalogic.Conservatory.Common.Models">
<Parents>
<ParentModel>
<Address>sample string 5</Address>
<Email>sample string 8</Email>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
<MobilePhone>sample string 7</MobilePhone>
<Name>sample string 3</Name>
<OperatorId>2</OperatorId>
<Phone>sample string 6</Phone>
<RelatedParentId>1</RelatedParentId>
<SocialSecurityNumber>sample string 4</SocialSecurityNumber>
</ParentModel>
<ParentModel>
<Address>sample string 5</Address>
<Email>sample string 8</Email>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
<MobilePhone>sample string 7</MobilePhone>
<Name>sample string 3</Name>
<OperatorId>2</OperatorId>
<Phone>sample string 6</Phone>
<RelatedParentId>1</RelatedParentId>
<SocialSecurityNumber>sample string 4</SocialSecurityNumber>
</ParentModel>
</Parents>
<Phones>
<PhoneModel>
<Id>3</Id>
<OwnerId>17ecd6b0-957f-47c7-8e14-b001e10d2d3a</OwnerId>
<Phone>sample string 2</Phone>
<Type>64</Type>
</PhoneModel>
<PhoneModel>
<Id>3</Id>
<OwnerId>17ecd6b0-957f-47c7-8e14-b001e10d2d3a</OwnerId>
<Phone>sample string 2</Phone>
<Type>64</Type>
</PhoneModel>
</Phones>
<SchoolName>sample string 1</SchoolName>
<Student>
<Address>sample string 8</Address>
<DateOfBirth>2026-03-13T00:18:49.8763719+02:00</DateOfBirth>
<Email>sample string 9</Email>
<ExternalId>d673d43b-f375-4464-9253-a9e0e4b05456</ExternalId>
<FirstName>sample string 4</FirstName>
<FirstYearId>3</FirstYearId>
<Id>1</Id>
<IsActive>true</IsActive>
<IsMale>true</IsMale>
<LastName>sample string 5</LastName>
<OperatorId>2</OperatorId>
<PhotoURL>sample string 10</PhotoURL>
<RegistrationDate>2026-03-13T00:18:49.8763719+02:00</RegistrationDate>
<SchoolGradeId>1</SchoolGradeId>
<SchoolId>1</SchoolId>
<SocialSecurityNumber>sample string 6</SocialSecurityNumber>
</Student>
<YearRegistration>
<Created>2026-03-13T00:18:49.8763719+02:00</Created>
<CreatedBy>b476fae2-6fe3-43a7-a151-164165ad492a</CreatedBy>
<FinancialDocumentReference>89291ac1-4cc8-42dd-b037-f93d2264a644</FinancialDocumentReference>
<InstrumentPriceListId>1</InstrumentPriceListId>
<Instruments>
<StudentYearRegistrationInstrumentTypeMappingModel>
<Created>2026-03-13T00:18:49.8763719+02:00</Created>
<InstrumentTypeId>1</InstrumentTypeId>
<ProgramId>4</ProgramId>
<RankId>5</RankId>
<RequiredRankId>1</RequiredRankId>
<Seniority>7</Seniority>
<StudentId>2</StudentId>
<YearDegree>1</YearDegree>
<YearId>3</YearId>
</StudentYearRegistrationInstrumentTypeMappingModel>
<StudentYearRegistrationInstrumentTypeMappingModel>
<Created>2026-03-13T00:18:49.8763719+02:00</Created>
<InstrumentTypeId>1</InstrumentTypeId>
<ProgramId>4</ProgramId>
<RankId>5</RankId>
<RequiredRankId>1</RequiredRankId>
<Seniority>7</Seniority>
<StudentId>2</StudentId>
<YearDegree>1</YearDegree>
<YearId>3</YearId>
</StudentYearRegistrationInstrumentTypeMappingModel>
</Instruments>
<IsActive>true</IsActive>
<ProgramId>3</ProgramId>
<ProgramPriceListId>4</ProgramPriceListId>
<RegistrationResponse>sample string 6</RegistrationResponse>
<Status>64</Status>
<StudentId>2</StudentId>
<YearId>1</YearId>
</YearRegistration>
</GetStudentModel>