GET api/Students/{SchoolYear}/{StudentId}/StudentFederal/{FederalCodeUid}

Returns the Student Federal information for a Student and Federal Code Uid.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
SchoolYear

Numeric Value of the School Year (i.e. 2018 for the 2017-2018 School Year)

integer

Required

StudentId

Application identifier for the Student

globally unique identifier

Required

FederalCodeUid

User identifier for the Federal Code

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of StudentFederal objects for the specified SchoolYear, StudentId, and FederalCodeUid

Collection of StudentFederal
NameDescriptionTypeAdditional information
StudentId

The application identifier for the Student.

globally unique identifier

None.

FederalCodeUid

The user identifier for the Federal Code.

string

None.

FederalCodeDescription

The description for the Federal Code.

string

None.

OtherCodeUid

The user identifier for the Other Code.

string

None.

OtherCodeDescription

The description for the Other Code.

string

None.

BeginDate

The begin date for the Federal Code.

date

None.

EndDate

The end date for the Federal Code.

date

None.

LastEffectiveDate

The last date the Student is effectively participating in the Federal Code.

date

None.

Comment

The comment for the Federal Code.

string

None.

Id

The application identifier for the object. This cannot be changed by the user.

globally unique identifier

None.

DataVersion

The version of the API data

string

None.

ApiName

The name of the object without the Api suffix

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "StudentId": "08d02c9a-350c-4fdd-b2aa-a3ac6c02bc2f",
    "FederalCodeUid": "sample string 2",
    "FederalCodeDescription": "sample string 3",
    "OtherCodeUid": "sample string 4",
    "OtherCodeDescription": "sample string 5",
    "BeginDate": "2025-04-25T23:43:37.9217617-05:00",
    "EndDate": "2025-04-25T23:43:37.9217617-05:00",
    "LastEffectiveDate": "2025-04-25T23:43:37.9217617-05:00",
    "Comment": "sample string 9",
    "Id": "94f2212e-1ce5-4c60-95f6-a2e4c9a75387",
    "DataVersion": "sample string 11",
    "ApiName": ""
  },
  {
    "StudentId": "08d02c9a-350c-4fdd-b2aa-a3ac6c02bc2f",
    "FederalCodeUid": "sample string 2",
    "FederalCodeDescription": "sample string 3",
    "OtherCodeUid": "sample string 4",
    "OtherCodeDescription": "sample string 5",
    "BeginDate": "2025-04-25T23:43:37.9217617-05:00",
    "EndDate": "2025-04-25T23:43:37.9217617-05:00",
    "LastEffectiveDate": "2025-04-25T23:43:37.9217617-05:00",
    "Comment": "sample string 9",
    "Id": "94f2212e-1ce5-4c60-95f6-a2e4c9a75387",
    "DataVersion": "sample string 11",
    "ApiName": ""
  }
]

application/xml, text/xml

Sample:
<ArrayOfStudentFederal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi.v1">
  <StudentFederal>
    <DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 11</DataVersion>
    <Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">94f2212e-1ce5-4c60-95f6-a2e4c9a75387</Id>
    <BeginDate>2025-04-25T23:43:37.9217617-05:00</BeginDate>
    <Comment>sample string 9</Comment>
    <EndDate>2025-04-25T23:43:37.9217617-05:00</EndDate>
    <FederalCodeDescription>sample string 3</FederalCodeDescription>
    <FederalCodeUid>sample string 2</FederalCodeUid>
    <LastEffectiveDate>2025-04-25T23:43:37.9217617-05:00</LastEffectiveDate>
    <OtherCodeDescription>sample string 5</OtherCodeDescription>
    <OtherCodeUid>sample string 4</OtherCodeUid>
    <StudentId>08d02c9a-350c-4fdd-b2aa-a3ac6c02bc2f</StudentId>
  </StudentFederal>
  <StudentFederal>
    <DataVersion xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">sample string 11</DataVersion>
    <Id xmlns="http://schemas.datacontract.org/2004/07/MAS.WebApi">94f2212e-1ce5-4c60-95f6-a2e4c9a75387</Id>
    <BeginDate>2025-04-25T23:43:37.9217617-05:00</BeginDate>
    <Comment>sample string 9</Comment>
    <EndDate>2025-04-25T23:43:37.9217617-05:00</EndDate>
    <FederalCodeDescription>sample string 3</FederalCodeDescription>
    <FederalCodeUid>sample string 2</FederalCodeUid>
    <LastEffectiveDate>2025-04-25T23:43:37.9217617-05:00</LastEffectiveDate>
    <OtherCodeDescription>sample string 5</OtherCodeDescription>
    <OtherCodeUid>sample string 4</OtherCodeUid>
    <StudentId>08d02c9a-350c-4fdd-b2aa-a3ac6c02bc2f</StudentId>
  </StudentFederal>
</ArrayOfStudentFederal>