Példák
Áfa kulcsok lekérése
Az alábbi getSetting kérésben a magyar Áfa kulcsokat kérdezzük le.
Kérés
<?xml version="1.0" encoding="UTF-8" ?>
<Params>
<Key>vat</Key>
<Country>hu</Country>
</Params>
Válasz
<?xml version="1.0" encoding="UTF-8" ?>
<Settings>
<Setting>
<Key>vat</Key>
<Country>hu</Country>
<Items>
<Item>
<Id>1</Id>
<Value>27</Value>
</Item>
<Item>
<Id>2</Id>
<Value>18</Value>
</Item>
<Item>
<Id>3</Id>
<Value>5</Value>
</Item>
<Item>
<Id>4</Id>
<Value>0</Value>
</Item>
</Items>
<CalculateMode>fromNetToGross</CalculateMode>
</Setting>
</Settings>
ÁSZF lekérése (HTML típus)
Az alábbi getSetting kérésben a magyar Általános Szerződési Feltételek dokumentumot kérdezzük le. Ebben az esetben a típus HTML.
Kérés
<?xml version="1.0" encoding="UTF-8" ?>
<Params>
<Key>terms</Key>
<Country>hu</Country>
</Params>
Válasz
<?xml version="1.0" encoding="UTF-8" ?>
<Settings>
<Setting>
<Key>terms</Key>
<Lang>hu</Lang>
<Enabled>no</Enabled>
<Type>HTML</Type>
<EmailAttachment><![CDATA[https://aszf.unas.hu/default.pdf]]></EmailAttachment>
<Items>
<Item>
<Id>1</Id>
<Text><![CDATA[<div><p>ÁSZF tartalma</p></div>]]></Text>
</Item>
</Items>
</Setting>
</Settings>
ÁSZF lekérése (multisectional típus)
Az alábbi getSetting kérésben a magyar Általános Szerződési Feltételek dokumentumot kérdezzük le. Ebben az esetben a típus multisectional.
Kérés
<?xml version="1.0" encoding="UTF-8" ?>
<Params>
<Key>terms</Key>
<Country>hu</Country>
</Params>
Válasz
<?xml version="1.0" encoding="UTF-8" ?>
<Settings>
<Setting>
<Key>terms</Key>
<Lang>hu</Lang>
<Enabled>yes</Enabled>
<Type>multisectional</Type>
<EmailAttachment>yes</EmailAttachment>
<Items>
<Item>
<Id>1</Id>
<Title><![CDATA[ÁSZF első szekció címe]]></Title>
<Text><![CDATA[<p>ÁSZF első szekció tartalma</p>]]></Text>
</Item>
<Item>
<Id>2</Id>
<Title><![CDATA[ÁSZF második szekció címe]]></Title>
<Text><![CDATA[<p>ÁSZF második szekció tartalma</p>]]></Text>
</Item>
<Item>
<Id>3</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>4</Id>
<Title><![CDATA[ÁSZF negyedik szekció címe]]></Title>
<Text><![CDATA[<p>ÁSZF negyedik szekció tartalma</p>]]></Text>
</Item>
<Item>
<Id>5</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>6</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>7</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>8</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>9</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>10</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>11</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>12</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>13</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>14</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>15</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>16</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>17</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>18</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>19</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
<Item>
<Id>20</Id>
<Title>-</Title>
<Text>-</Text>
</Item>
</Items>
</Setting>
</Settings>
Áfa kulcsok módosítása
Az alábbi setSetting kérésben a magyar Áfa kulcsokat módosítjuk.
Kérés
<?xml version="1.0" encoding="UTF-8" ?>
<Settings>
<Setting>
<Key>vat</Key>
<Country>hu</Country>
<Items>
<Item>
<Id>1</Id>
<Value>25</Value>
</Item>
<Item>
<Id>2</Id>
<Value>15</Value>
</Item>
<Item>
<Id>3</Id>
<Value>5</Value>
</Item>
<Item>
<Id>4</Id>
<Value>0</Value>
</Item>
</Items>
<CalculateMode>fromNetToGross</CalculateMode>
</Setting>
</Settings>
Válasz
<?xml version="1.0" encoding="UTF-8" ?>
<Settings>
<Setting>
<Key>vat</Key>
<Action>modify</Action>
<Status>ok</Status>
</Setting>
</Settings>