Order Entity

<order>
    <idOrder />           // Order's ID
    <seller />            // User's entity of the seller
    <buyer />             // User's entity of the buyer
    <state>               // State entity
        <state />
        <dateBought />
        <datePaid />
        <dateSent />
        <dateReceived />
        <dateCancelled />
    </state>
    <shippingMethod>      // Shipping Method entity
        <name />
        <price />
    </shippingMethod>
    <evaluation>          // Evaluation entity
        <overall />
        <articles />
        <packaging />
        <speed />
        <comments />
    </evaluation>
    <article />           // Article entity for each article of the order
    <articleValue />      // sum of article values
    <totalValue />        // total value (article values plus shipping costs)
</order>

See also: User Entity, State Entity, Shipping Method Entity, Evaluation Entity, Article Entity

Example

<order>
    <idOrder>1462215</idOrder>
    <seller>
        <idUser>9999</idUser>
        <username>testApiUser</username>
        <country>D</country
        <isCommercial>X</isCommercial>
        <riskGroup>0</riskGroup>
        <reputation>1</reputation>
        <name>
            <firstName>Test</firstName>
            <lastName>Api-User</lastName>
        </name>
	    <address>
            <name>Test Api-User</name>
            <extra />
            <street>Teststraße 4</street>
            <zip>01234</zip>
            <city>Berlin</city>
            <country>Germany</country>
        </address>
    </seller>
    <buyer>
        <idUser>9999</idUser>
        <username>testApiUser</username>
        <country>D</country
        <isCommercial>X</isCommercial>
        <riskGroup>0</riskGroup>
        <reputation>1</reputation>
        <name>
            <firstName>Test</firstName>
            <lastName>Api-User</lastName>
        </name>
	    <address>
            <name>Test Api-User</name>
            <extra />
            <street>Teststraße 4</street>
            <zip>01234</zip>
            <city>Berlin</city>
            <country>Germany</country>
        </address>
    </buyer>
    <state>
        <state>paid</state>
        <dateBought>2013-08-27 23:59:48</dateBought>
        <datePaid>2013-08-27 23:59:48</datePaid>
    </state>
    <shippingMethod>
        <name>Kompaktbrief + Einwurfeinschreiben</name>
        <price>2.80</price>
    </shippingMethod>
    <evaluation>
        <overall></overall>
        <articles></articles>
        <packaging></packaging>
        <speed></speed>
        <comments></comments>
    </evaluation>
    <article>
        <idArticle>111219571</idArticle>
        <idProduct>10715</idProduct>
        <language>
            <idLanguage>1</idLanguage>
            <languageName>English</languageName>
        </language>
        <comments>WE HAVE ALMOST EVERY CARD IN STOCK!!!</comments>
        <price>9.05</price>
        <count>2</count>
        <condition>NM</condition>
        <isFoil>false</isFoil>
        <isSigned>false</isSigned>
        <isAltered>false</isAltered>
        <isPlayset>false</isPlayset>
    </article>
    <article>
        <idArticle>111219557</idArticle>
        <idProduct>10715</idProduct>
        <language>
            <idLanguage>1</idLanguage>
            <languageName>English</languageName>
        </language>
        <comments>WE HAVE ALMOST EVERY CARD IN STOCK!!!</comments>
        <price>9.00</price>
        <count>1</count>
        <condition>EX</condition>
        <isFoil>false</isFoil>
        <isSigned>false</isSigned>
        <isAltered>false</isAltered>
        <isPlayset>false</isPlayset>
    </article>
    <articleValue>27.10</articleValue>
    <totalValue>29.9</totalValue>
</order>