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>
GET /api/country-taxes?country_code=CH
Findet die Ausnahme für die Schweiz.
Parameter | Beschreibung |
---|---|
country | Ländercode nach ISO 3166 Alpha-2 |
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>
POST /api/country-taxes
XML-Element | Beschreibung | Typ | Default-Wert | Pflichtfeld |
---|---|---|---|---|
country_code | Land | ALNUM | Ländercode nach ISO 3166 Alpha-2 | ja |
<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>
PUT /api/country_taxes/{id}
<country-tax> <country_code>AT</country_code> </country-tax>
DELETE /api/country-taxes/{id}