GET api/v1/students/priceListProduct?studentLegalId={studentLegalId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
studentLegalId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of PriceListProductModel
NameDescriptionTypeAdditional information
PriceListId

integer

None.

Price

decimal number

None.

Deposit

decimal number

None.

Name

string

None.

Type

byte

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PriceListId": 1,
    "Price": 2.0,
    "Deposit": 3.0,
    "Name": "sample string 4",
    "Type": 64
  },
  {
    "PriceListId": 1,
    "Price": 2.0,
    "Deposit": 3.0,
    "Name": "sample string 4",
    "Type": 64
  }
]

application/xml, text/xml

Sample:
<ArrayOfPriceListProductModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Emalogic.Conservatory.Common.Models">
  <PriceListProductModel>
    <Deposit>3</Deposit>
    <Name>sample string 4</Name>
    <Price>2</Price>
    <PriceListId>1</PriceListId>
    <Type>64</Type>
  </PriceListProductModel>
  <PriceListProductModel>
    <Deposit>3</Deposit>
    <Name>sample string 4</Name>
    <Price>2</Price>
    <PriceListId>1</PriceListId>
    <Type>64</Type>
  </PriceListProductModel>
</ArrayOfPriceListProductModel>