POST Api/Fee/GetCamiFee
Request Information
URI Parameters
None.
Body Parameters
FeeRequestModelName | Description | Type | Additional information |
---|---|---|---|
ShopId | string |
None. |
|
RecordDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "ShopId": "sample string 1", "RecordDate": "2025-08-02T15:09:37.7074889+02:00" }
application/xml, text/xml
Sample:
<FeeRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Service.Web.Models"> <RecordDate>2025-08-02T15:09:37.7074889+02:00</RecordDate> <ShopId>sample string 1</ShopId> </FeeRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of FeeAmountName | Description | Type | Additional information |
---|---|---|---|
RecordDate | date |
None. |
|
ShopId | string |
None. |
|
PaymentType | string |
None. |
|
RecordType | string |
None. |
|
VatCode | string |
None. |
|
Amount | decimal number |
None. |
|
InvoiceAmount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[ { "RecordDate": "2025-08-02T15:09:37.7074889+02:00", "ShopId": "sample string 2", "PaymentType": "sample string 3", "RecordType": "sample string 4", "VatCode": "sample string 5", "Amount": 6.0, "InvoiceAmount": 7.0 }, { "RecordDate": "2025-08-02T15:09:37.7074889+02:00", "ShopId": "sample string 2", "PaymentType": "sample string 3", "RecordType": "sample string 4", "VatCode": "sample string 5", "Amount": 6.0, "InvoiceAmount": 7.0 } ]
application/xml, text/xml
Sample:
<ArrayOfFeeAmount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Data.Models.Cami"> <FeeAmount> <Amount>6</Amount> <InvoiceAmount>7</InvoiceAmount> <PaymentType>sample string 3</PaymentType> <RecordDate>2025-08-02T15:09:37.7074889+02:00</RecordDate> <RecordType>sample string 4</RecordType> <ShopId>sample string 2</ShopId> <VatCode>sample string 5</VatCode> </FeeAmount> <FeeAmount> <Amount>6</Amount> <InvoiceAmount>7</InvoiceAmount> <PaymentType>sample string 3</PaymentType> <RecordDate>2025-08-02T15:09:37.7074889+02:00</RecordDate> <RecordType>sample string 4</RecordType> <ShopId>sample string 2</ShopId> <VatCode>sample string 5</VatCode> </FeeAmount> </ArrayOfFeeAmount>