GET api/CountryVatCodes/GetCountryVatCodes?l={l}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
l

integer

Required

Body Parameters

None.

Response Information

Resource Description

CountryVatCode
NameDescriptionTypeAdditional information
CountryVatCodeId

integer

None.

Country

string

None.

VatCode

string

None.

LanguageId

integer

None.

ObjectState

ObjectState

None.

Response Formats

application/json, text/json

Sample:
{
  "countryVatCodeId": 1,
  "country": "sample string 2",
  "vatCode": "sample string 3",
  "languageId": 4,
  "objectState": 0
}

application/xml, text/xml

Sample:
<CountryVatCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Gruo.Core.Models">
  <ObjectState xmlns="http://schemas.datacontract.org/2004/07/Gruo.Core.Repository">Unchanged</ObjectState>
  <Country>sample string 2</Country>
  <CountryVatCodeId>1</CountryVatCodeId>
  <LanguageId>4</LanguageId>
  <VatCode>sample string 3</VatCode>
</CountryVatCode>