POST Api/Fee/GetInvoiceVatRates
Request Information
URI Parameters
None.
Body Parameters
GetInvoiceVatRatesRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ShopId | string |
None. |
|
| RecordDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"ShopId": "sample string 1",
"RecordDate": "2025-12-14T08:01:44.3468746+01:00"
}
application/xml, text/xml
Sample:
<GetInvoiceVatRatesRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Service.Web.Models"> <RecordDate>2025-12-14T08:01:44.3468746+01:00</RecordDate> <ShopId>sample string 1</ShopId> </GetInvoiceVatRatesRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of VATRATE| Name | Description | Type | Additional information |
|---|---|---|---|
| CODPV | string |
None. |
|
| DATA | date |
None. |
|
| CODIVA | string |
None. |
|
| ANIVA_DESCR | string |
None. |
|
| IMP | decimal number |
None. |
|
| IVA | decimal number |
None. |
|
| LORDO | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CODPV": "sample string 1",
"DATA": "2025-12-14T08:01:44.3468746+01:00",
"CODIVA": "sample string 3",
"ANIVA_DESCR": "sample string 4",
"IMP": 5.0,
"IVA": 6.0,
"LORDO": 7.0
},
{
"CODPV": "sample string 1",
"DATA": "2025-12-14T08:01:44.3468746+01:00",
"CODIVA": "sample string 3",
"ANIVA_DESCR": "sample string 4",
"IMP": 5.0,
"IVA": 6.0,
"LORDO": 7.0
}
]
application/xml, text/xml
Sample:
<ArrayOfVATRATE xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Data.Models.Cami">
<VATRATE>
<ANIVA_DESCR>sample string 4</ANIVA_DESCR>
<CODIVA>sample string 3</CODIVA>
<CODPV>sample string 1</CODPV>
<DATA>2025-12-14T08:01:44.3468746+01:00</DATA>
<IMP>5</IMP>
<IVA>6</IVA>
<LORDO>7</LORDO>
</VATRATE>
<VATRATE>
<ANIVA_DESCR>sample string 4</ANIVA_DESCR>
<CODIVA>sample string 3</CODIVA>
<CODPV>sample string 1</CODPV>
<DATA>2025-12-14T08:01:44.3468746+01:00</DATA>
<IMP>5</IMP>
<IVA>6</IVA>
<LORDO>7</LORDO>
</VATRATE>
</ArrayOfVATRATE>