Skip to main content

Response

Expected results of sending a receipt

Whether sending the receipt was successful or not depends on the received response:

<sikeres>true</sikeres> or <sikeres>false</sikeres>. If the sending was unsuccessful, you will receive an error code and one of the following error messages.

Example response: success

<?xml version="1.0" encoding="UTF-8"?>
<xmlnyugtasendvalasz xmlns="http://www.szamlazz.hu/xmlnyugtasendvalasz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.szamlazz.hu/xmlnyugtasendvalasz http://www.szamlazz.hu/docs/xsds/nyugta/xmlnyugtasendvalasz.xsd">
  <sikeres>true</sikeres>
  <hibakod></hibakod>
  <hibauzenet></hibauzenet>
</xmlnyugtasendvalasz>

Example response: failed

<?xml version="1.0" encoding="UTF-8"?>
<xmlnyugtasendvalasz xmlns="http://www.szamlazz.hu/xmlnyugtasendvalasz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.szamlazz.hu/xmlnyugtasendvalasz http://www.szamlazz.hu/docs/xsds/nyugta/xmlnyugtasendvalasz.xsd">
  <sikeres>false</sikeres>
  <hibakod>7</hibakod>
  <hibauzenet>Hiányzó adat: emailtargy elem.</hibauzenet>
</xmlnyugtasendvalasz>

XML response scheme

<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.szamlazz.hu/xmlnyugtasendvalasz" xmlns:tns="http://www.szamlazz.hu/xmlnyugtasendvalasz" elementFormDefault="qualified">
    <element name="xmlnyugtasendvalasz">
        <complexType>
            <all>
                <element name="sikeres"           type="boolean" maxOccurs="1" minOccurs="1"></element>
                <element name="hibakod"         type="int" maxOccurs="1" minOccurs="0"></element>
                <element name="hibauzenet"      type="string" maxOccurs="1" minOccurs="0"></element>
            </all>
        </complexType>
    </element>
</schema>