POST Api/Fee/GetVatCodes

Request Information

URI Parameters

None.

Body Parameters

VatCodeRequestModel
NameDescriptionTypeAdditional information
Source

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Source": "sample string 1"
}

application/xml, text/xml

Sample:
<VatCodeRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Service.Web.Models">
  <Source>sample string 1</Source>
</VatCodeRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of VatCode
NameDescriptionTypeAdditional information
SourceVatCode

string

None.

Source

string

None.

PurchasingVatCode

string

None.

SellingVatCode

string

None.

InvoiceVatCode

string

None.

SplitPaymentVatCode

string

None.

VatRate

integer

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SourceVatCode": "sample string 1",
    "Source": "sample string 2",
    "PurchasingVatCode": "sample string 3",
    "SellingVatCode": "sample string 4",
    "InvoiceVatCode": "sample string 5",
    "SplitPaymentVatCode": "sample string 6",
    "VatRate": 7,
    "Description": "sample string 8"
  },
  {
    "SourceVatCode": "sample string 1",
    "Source": "sample string 2",
    "PurchasingVatCode": "sample string 3",
    "SellingVatCode": "sample string 4",
    "InvoiceVatCode": "sample string 5",
    "SplitPaymentVatCode": "sample string 6",
    "VatRate": 7,
    "Description": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfVatCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HotSteel.Data.Models.CamiSupport">
  <VatCode>
    <Description>sample string 8</Description>
    <InvoiceVatCode>sample string 5</InvoiceVatCode>
    <PurchasingVatCode>sample string 3</PurchasingVatCode>
    <SellingVatCode>sample string 4</SellingVatCode>
    <Source>sample string 2</Source>
    <SourceVatCode>sample string 1</SourceVatCode>
    <SplitPaymentVatCode>sample string 6</SplitPaymentVatCode>
    <VatRate>7</VatRate>
  </VatCode>
  <VatCode>
    <Description>sample string 8</Description>
    <InvoiceVatCode>sample string 5</InvoiceVatCode>
    <PurchasingVatCode>sample string 3</PurchasingVatCode>
    <SellingVatCode>sample string 4</SellingVatCode>
    <Source>sample string 2</Source>
    <SourceVatCode>sample string 1</SourceVatCode>
    <SplitPaymentVatCode>sample string 6</SplitPaymentVatCode>
    <VatRate>7</VatRate>
  </VatCode>
</ArrayOfVatCode>