GET api/v1/students/{studentId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
studentId

integer

Required

Body Parameters

None.

Response Information

Resource Description

GetStudentModel
NameDescriptionTypeAdditional 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": "2025-12-10T17:32:26.6793867+02:00",
    "IsMale": true,
    "Address": "sample string 8",
    "Email": "sample string 9",
    "SchoolId": 1,
    "SchoolGradeId": 1,
    "PhotoURL": "sample string 10",
    "IsActive": true,
    "ExternalId": "3d91c382-acba-462c-a4df-f37e3c829da2",
    "RegistrationDate": "2025-12-10T17:32:26.6793867+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": "570529ae-c939-4b41-9dc4-8f3256cd64b3",
      "Phone": "sample string 2",
      "Id": 3,
      "Type": 64
    },
    {
      "OwnerId": "570529ae-c939-4b41-9dc4-8f3256cd64b3",
      "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": "2025-12-10T17:32:26.6793867+02:00",
    "CreatedBy": "c82fc39f-bd6e-475e-b333-e3cde3be60dc",
    "IsActive": true,
    "FinancialDocumentReference": "79132da1-7f86-4b47-8a3c-1da8c46dfd1d",
    "Instruments": [
      {
        "InstrumentTypeId": 1,
        "StudentId": 2,
        "YearId": 3,
        "ProgramId": 4,
        "RankId": 5,
        "RequiredRankId": 1,
        "Created": "2025-12-10T17:32:26.6793867+02:00",
        "Seniority": 7,
        "YearDegree": 1
      },
      {
        "InstrumentTypeId": 1,
        "StudentId": 2,
        "YearId": 3,
        "ProgramId": 4,
        "RankId": 5,
        "RequiredRankId": 1,
        "Created": "2025-12-10T17:32:26.6793867+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>570529ae-c939-4b41-9dc4-8f3256cd64b3</OwnerId>
      <Phone>sample string 2</Phone>
      <Type>64</Type>
    </PhoneModel>
    <PhoneModel>
      <Id>3</Id>
      <OwnerId>570529ae-c939-4b41-9dc4-8f3256cd64b3</OwnerId>
      <Phone>sample string 2</Phone>
      <Type>64</Type>
    </PhoneModel>
  </Phones>
  <SchoolName>sample string 1</SchoolName>
  <Student>
    <Address>sample string 8</Address>
    <DateOfBirth>2025-12-10T17:32:26.6793867+02:00</DateOfBirth>
    <Email>sample string 9</Email>
    <ExternalId>3d91c382-acba-462c-a4df-f37e3c829da2</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>2025-12-10T17:32:26.6793867+02:00</RegistrationDate>
    <SchoolGradeId>1</SchoolGradeId>
    <SchoolId>1</SchoolId>
    <SocialSecurityNumber>sample string 6</SocialSecurityNumber>
  </Student>
  <YearRegistration>
    <Created>2025-12-10T17:32:26.6793867+02:00</Created>
    <CreatedBy>c82fc39f-bd6e-475e-b333-e3cde3be60dc</CreatedBy>
    <FinancialDocumentReference>79132da1-7f86-4b47-8a3c-1da8c46dfd1d</FinancialDocumentReference>
    <InstrumentPriceListId>1</InstrumentPriceListId>
    <Instruments>
      <StudentYearRegistrationInstrumentTypeMappingModel>
        <Created>2025-12-10T17:32:26.6793867+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>2025-12-10T17:32:26.6793867+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>