GET api/Asset/GetPriceUpdateVerification?initialDate={initialDate}&finalDate={finalDate}&symbolList={symbolList}&frecuency={frecuency}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
initialDate

date

Required

finalDate

date

Required

symbolList

string

Required

frecuency

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of AssetPriceUpdateVerification
NameDescriptionTypeAdditional information
Symbol

string

None.

PreviousDate

date

None.

PreviousPrice

decimal number

None.

CurrentDate

date

None.

CurrentPrice

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Symbol": "sample string 1",
    "PreviousDate": "2025-12-06T12:54:47.5201924-06:00",
    "PreviousPrice": 1.0,
    "CurrentDate": "2025-12-06T12:54:47.5201924-06:00",
    "CurrentPrice": 1.0
  },
  {
    "Symbol": "sample string 1",
    "PreviousDate": "2025-12-06T12:54:47.5201924-06:00",
    "PreviousPrice": 1.0,
    "CurrentDate": "2025-12-06T12:54:47.5201924-06:00",
    "CurrentPrice": 1.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfAssetController.AssetPriceUpdateVerification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiLMD.Controllers">
  <AssetController.AssetPriceUpdateVerification>
    <CurrentDate>2025-12-06T12:54:47.5201924-06:00</CurrentDate>
    <CurrentPrice>1</CurrentPrice>
    <PreviousDate>2025-12-06T12:54:47.5201924-06:00</PreviousDate>
    <PreviousPrice>1</PreviousPrice>
    <Symbol>sample string 1</Symbol>
  </AssetController.AssetPriceUpdateVerification>
  <AssetController.AssetPriceUpdateVerification>
    <CurrentDate>2025-12-06T12:54:47.5201924-06:00</CurrentDate>
    <CurrentPrice>1</CurrentPrice>
    <PreviousDate>2025-12-06T12:54:47.5201924-06:00</PreviousDate>
    <PreviousPrice>1</PreviousPrice>
    <Symbol>sample string 1</Symbol>
  </AssetController.AssetPriceUpdateVerification>
</ArrayOfAssetController.AssetPriceUpdateVerification>