POST Api/AggregatedData/GetAmounts

Request Information

URI Parameters

None.

Body Parameters

GetAmountRequestModel
NameDescriptionTypeAdditional information
ShopId

string

None.

RecordDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ShopId": "sample string 1",
  "RecordDate": "2025-08-02T15:23:42.5185662+02:00"
}

application/xml, text/xml

Sample:
<GetAmountRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Service.Web.Models">
  <RecordDate>2025-08-02T15:23:42.5185662+02:00</RecordDate>
  <ShopId>sample string 1</ShopId>
</GetAmountRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of AggregatedAmount
NameDescriptionTypeAdditional information
ShopId

string

None.

Date

date

None.

SaleAmount

decimal number

None.

FiscalAmount

decimal number

None.

FidelityAmount

decimal number

None.

OfferAmount

decimal number

None.

FidelityOfferAmount

decimal number

None.

NormalAmount

decimal number

None.

FidelityNormalAmount

decimal number

None.

TransactionDiscount

decimal number

None.

OfferDiscount

decimal number

None.

ReceiptCount

decimal number

None.

FidelityReceiptCount

decimal number

None.

Verified

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ShopId": "sample string 1",
    "Date": "2025-08-02T15:23:42.5344194+02:00",
    "SaleAmount": 3.0,
    "FiscalAmount": 4.0,
    "FidelityAmount": 5.0,
    "OfferAmount": 6.0,
    "FidelityOfferAmount": 7.0,
    "NormalAmount": 8.0,
    "FidelityNormalAmount": 9.0,
    "TransactionDiscount": 10.0,
    "OfferDiscount": 11.0,
    "ReceiptCount": 12.0,
    "FidelityReceiptCount": 13.0,
    "Verified": true
  },
  {
    "ShopId": "sample string 1",
    "Date": "2025-08-02T15:23:42.5344194+02:00",
    "SaleAmount": 3.0,
    "FiscalAmount": 4.0,
    "FidelityAmount": 5.0,
    "OfferAmount": 6.0,
    "FidelityOfferAmount": 7.0,
    "NormalAmount": 8.0,
    "FidelityNormalAmount": 9.0,
    "TransactionDiscount": 10.0,
    "OfferDiscount": 11.0,
    "ReceiptCount": 12.0,
    "FidelityReceiptCount": 13.0,
    "Verified": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfAggregatedAmount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Data.Models.Intranet">
  <AggregatedAmount>
    <Date>2025-08-02T15:23:42.5344194+02:00</Date>
    <FidelityAmount>5</FidelityAmount>
    <FidelityNormalAmount>9</FidelityNormalAmount>
    <FidelityOfferAmount>7</FidelityOfferAmount>
    <FidelityReceiptCount>13</FidelityReceiptCount>
    <FiscalAmount>4</FiscalAmount>
    <NormalAmount>8</NormalAmount>
    <OfferAmount>6</OfferAmount>
    <OfferDiscount>11</OfferDiscount>
    <ReceiptCount>12</ReceiptCount>
    <SaleAmount>3</SaleAmount>
    <ShopId>sample string 1</ShopId>
    <TransactionDiscount>10</TransactionDiscount>
    <Verified>true</Verified>
  </AggregatedAmount>
  <AggregatedAmount>
    <Date>2025-08-02T15:23:42.5344194+02:00</Date>
    <FidelityAmount>5</FidelityAmount>
    <FidelityNormalAmount>9</FidelityNormalAmount>
    <FidelityOfferAmount>7</FidelityOfferAmount>
    <FidelityReceiptCount>13</FidelityReceiptCount>
    <FiscalAmount>4</FiscalAmount>
    <NormalAmount>8</NormalAmount>
    <OfferAmount>6</OfferAmount>
    <OfferDiscount>11</OfferDiscount>
    <ReceiptCount>12</ReceiptCount>
    <SaleAmount>3</SaleAmount>
    <ShopId>sample string 1</ShopId>
    <TransactionDiscount>10</TransactionDiscount>
    <Verified>true</Verified>
  </AggregatedAmount>
</ArrayOfAggregatedAmount>