GET api/course/fees/get/changes/from/db/{fromDate}

Returns a IEnumerable of the EOS Course Fee object based last update datetime greater or equal to the fromDate param and inCatalog = 1 from database

Request Information

URI Parameters

NameDescriptionTypeAdditional information
fromDate

The min last update date of the Course Fee objects you want returned. Expected format 2015-09-03T12:46:41

date

Required

Body Parameters

None.

Response Information

Resource Description

IEnumerable of EOSCourseFee

Collection of EOSCourseFee
NameDescriptionTypeAdditional information
CourseId

integer

None.

FeeId

integer

None.

FeeAmount

decimal number

None.

Description

string

None.

Required

boolean

None.

TuitionClassDesc

string

None.

NonResident

boolean

None.

EducUnitTypeDesc

string

None.

EffectiveDate

date

None.

EffectiveThroughDate

date

None.

UpdedDate

date

None.

FullRefundDate

date

None.

PartialRefundDate

date

None.

ApplyPerUnit

integer

None.

FeeStatus

FeeStatus

None.

NonresidentDesc

string

None.

TuitionClassCd

string

None.

educUnitType

string

None.

Deleted

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CourseId": 1,
    "FeeId": 2,
    "FeeAmount": 3.0,
    "Description": "sample string 4",
    "Required": true,
    "TuitionClassDesc": "sample string 6",
    "NonResident": true,
    "EducUnitTypeDesc": "sample string 8",
    "EffectiveDate": "2026-06-05T13:54:50.9510449-07:00",
    "EffectiveThroughDate": "2026-06-05T13:54:50.9510449-07:00",
    "UpdedDate": "2026-06-05T13:54:50.9510449-07:00",
    "FullRefundDate": "2026-06-05T13:54:50.9510449-07:00",
    "PartialRefundDate": "2026-06-05T13:54:50.9510449-07:00",
    "ApplyPerUnit": 14,
    "FeeStatus": 1,
    "NonresidentDesc": "sample string 15",
    "TuitionClassCd": "sample string 16",
    "educUnitType": "sample string 17",
    "Deleted": true
  },
  {
    "CourseId": 1,
    "FeeId": 2,
    "FeeAmount": 3.0,
    "Description": "sample string 4",
    "Required": true,
    "TuitionClassDesc": "sample string 6",
    "NonResident": true,
    "EducUnitTypeDesc": "sample string 8",
    "EffectiveDate": "2026-06-05T13:54:50.9510449-07:00",
    "EffectiveThroughDate": "2026-06-05T13:54:50.9510449-07:00",
    "UpdedDate": "2026-06-05T13:54:50.9510449-07:00",
    "FullRefundDate": "2026-06-05T13:54:50.9510449-07:00",
    "PartialRefundDate": "2026-06-05T13:54:50.9510449-07:00",
    "ApplyPerUnit": 14,
    "FeeStatus": 1,
    "NonresidentDesc": "sample string 15",
    "TuitionClassCd": "sample string 16",
    "educUnitType": "sample string 17",
    "Deleted": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfEOSCourseFee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EOSAPI.Base.Models">
  <EOSCourseFee>
    <ApplyPerUnit>14</ApplyPerUnit>
    <CourseId>1</CourseId>
    <Deleted>true</Deleted>
    <Description>sample string 4</Description>
    <EducUnitTypeDesc>sample string 8</EducUnitTypeDesc>
    <EffectiveDate>2026-06-05T13:54:50.9510449-07:00</EffectiveDate>
    <EffectiveThroughDate>2026-06-05T13:54:50.9510449-07:00</EffectiveThroughDate>
    <FeeAmount>3</FeeAmount>
    <FeeId>2</FeeId>
    <FeeStatus>Active</FeeStatus>
    <FullRefundDate>2026-06-05T13:54:50.9510449-07:00</FullRefundDate>
    <NonResident>true</NonResident>
    <NonresidentDesc>sample string 15</NonresidentDesc>
    <PartialRefundDate>2026-06-05T13:54:50.9510449-07:00</PartialRefundDate>
    <Required>true</Required>
    <TuitionClassCd>sample string 16</TuitionClassCd>
    <TuitionClassDesc>sample string 6</TuitionClassDesc>
    <UpdedDate>2026-06-05T13:54:50.9510449-07:00</UpdedDate>
    <educUnitType>sample string 17</educUnitType>
  </EOSCourseFee>
  <EOSCourseFee>
    <ApplyPerUnit>14</ApplyPerUnit>
    <CourseId>1</CourseId>
    <Deleted>true</Deleted>
    <Description>sample string 4</Description>
    <EducUnitTypeDesc>sample string 8</EducUnitTypeDesc>
    <EffectiveDate>2026-06-05T13:54:50.9510449-07:00</EffectiveDate>
    <EffectiveThroughDate>2026-06-05T13:54:50.9510449-07:00</EffectiveThroughDate>
    <FeeAmount>3</FeeAmount>
    <FeeId>2</FeeId>
    <FeeStatus>Active</FeeStatus>
    <FullRefundDate>2026-06-05T13:54:50.9510449-07:00</FullRefundDate>
    <NonResident>true</NonResident>
    <NonresidentDesc>sample string 15</NonresidentDesc>
    <PartialRefundDate>2026-06-05T13:54:50.9510449-07:00</PartialRefundDate>
    <Required>true</Required>
    <TuitionClassCd>sample string 16</TuitionClassCd>
    <TuitionClassDesc>sample string 6</TuitionClassDesc>
    <UpdedDate>2026-06-05T13:54:50.9510449-07:00</UpdedDate>
    <educUnitType>sample string 17</educUnitType>
  </EOSCourseFee>
</ArrayOfEOSCourseFee>