POST Api/Fee/GetCamiDocumentByVatRate
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:29:34.036065+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:29:34.036065+02:00</RecordDate> <ShopId>sample string 1</ShopId> </FeeRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of DocumentByVatRateName | Description | Type | Additional information |
---|---|---|---|
ShopId | string |
None. |
|
DocumentNumber | integer |
None. |
|
DocumentDate | date |
None. |
|
CustomerId | integer |
None. |
|
VatCode | string |
None. |
|
Amount | decimal number |
None. |
|
DocumentType | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ShopId": "sample string 1", "DocumentNumber": 2, "DocumentDate": "2025-08-02T15:29:34.036065+02:00", "CustomerId": 4, "VatCode": "sample string 5", "Amount": 6.0, "DocumentType": "sample string 7" }, { "ShopId": "sample string 1", "DocumentNumber": 2, "DocumentDate": "2025-08-02T15:29:34.036065+02:00", "CustomerId": 4, "VatCode": "sample string 5", "Amount": 6.0, "DocumentType": "sample string 7" } ]
application/xml, text/xml
Sample:
<ArrayOfDocumentByVatRate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Data.Models.Cami"> <DocumentByVatRate> <Amount>6</Amount> <CustomerId>4</CustomerId> <DocumentDate>2025-08-02T15:29:34.036065+02:00</DocumentDate> <DocumentNumber>2</DocumentNumber> <DocumentType>sample string 7</DocumentType> <ShopId>sample string 1</ShopId> <VatCode>sample string 5</VatCode> </DocumentByVatRate> <DocumentByVatRate> <Amount>6</Amount> <CustomerId>4</CustomerId> <DocumentDate>2025-08-02T15:29:34.036065+02:00</DocumentDate> <DocumentNumber>2</DocumentNumber> <DocumentType>sample string 7</DocumentType> <ShopId>sample string 1</ShopId> <VatCode>sample string 5</VatCode> </DocumentByVatRate> </ArrayOfDocumentByVatRate>