Steuerfreie Länder

Alle steuerfreien Länder auflisten

GET /api/country-taxes

 

<!--?xml version="1.0" encoding="UTF-8"?-->
<country-taxes type="array" page="1" per_page="100" total="2">
<country-tax>
...
</country-tax>
<country-tax>
...
</country-tax>
</country-taxes>

Über Parameter kann gefiltert werden

GET /api/country-taxes?country_code=CH

Findet die Ausnahme für die Schweiz.

ParameterBeschreibung
countryLändercode nach ISO 3166 Alpha-2

Einzelnes steuerfreies Land aufrufen

GET /api/country-taxes/{id}

 

<!--?xml version="1.0" encoding="UTF-8"?-->
<country-tax>
<id type="integer">7</id>
<country_code>CH</country_code>
</country-tax>

Steuerfreies Land erstellen

POST /api/country-taxes
XML-ElementBeschreibungTypDefault-WertPflichtfeld
country_codeLandALNUMLändercode nach ISO 3166 Alpha-2ja
<country-tax>
<country_code>CH</country_code>
</country-tax>

 

<!--?xml version="1.0" encoding="UTF-8"?-->
<country-tax>
<id type="integer">11</id>
<country_code>CH</country_code>
</country-tax>

Steuerfreies Land bearbeiten

PUT /api/country_taxes/{id}

 

<country-tax>
<country_code>AT</country_code>
</country-tax>

 

Steuerfreies Land löschen

DELETE /api/country-taxes/{id}