GET api/v1/general/programCoursePriceLists/{programPriceListId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
programPriceListId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ProgramPriceListCourseLengthMappingModel
NameDescriptionTypeAdditional information
Id

integer

None.

PriceListId

integer

Required

CourseLengthMappingId

integer

Required

MonthlyPrice

decimal number

Required

Created

date

None.

CreatedBy

globally unique identifier

None.

IsDeleted

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "PriceListId": 2,
    "CourseLengthMappingId": 3,
    "MonthlyPrice": 4.0,
    "Created": "2025-12-10T17:34:07.5518785+02:00",
    "CreatedBy": "4275d217-004f-421e-afe5-af1a4ab87492",
    "IsDeleted": true
  },
  {
    "Id": 1,
    "PriceListId": 2,
    "CourseLengthMappingId": 3,
    "MonthlyPrice": 4.0,
    "Created": "2025-12-10T17:34:07.5518785+02:00",
    "CreatedBy": "4275d217-004f-421e-afe5-af1a4ab87492",
    "IsDeleted": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfProgramPriceListCourseLengthMappingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Emalogic.Conservatory.Common.Models">
  <ProgramPriceListCourseLengthMappingModel>
    <CourseLengthMappingId>3</CourseLengthMappingId>
    <Created>2025-12-10T17:34:07.5518785+02:00</Created>
    <CreatedBy>4275d217-004f-421e-afe5-af1a4ab87492</CreatedBy>
    <Id>1</Id>
    <IsDeleted>true</IsDeleted>
    <MonthlyPrice>4</MonthlyPrice>
    <PriceListId>2</PriceListId>
  </ProgramPriceListCourseLengthMappingModel>
  <ProgramPriceListCourseLengthMappingModel>
    <CourseLengthMappingId>3</CourseLengthMappingId>
    <Created>2025-12-10T17:34:07.5518785+02:00</Created>
    <CreatedBy>4275d217-004f-421e-afe5-af1a4ab87492</CreatedBy>
    <Id>1</Id>
    <IsDeleted>true</IsDeleted>
    <MonthlyPrice>4</MonthlyPrice>
    <PriceListId>2</PriceListId>
  </ProgramPriceListCourseLengthMappingModel>
</ArrayOfProgramPriceListCourseLengthMappingModel>