Bestellungen ("orders")
Aufbau
"orders": array of `OrderObject`OrderObject
Beispiel
{
"orders": [
{
"id": "100000222",
"created": "2019-05-22 07:30:50",
"updated": "2019-05-22 07:31:25",
"status": "processing",
"shipping_method": {
"type": "DHL",
"description": "Versand über DHL"
},
"currency": "EUR",
"comment": "Kommentar zur Bestellung vom Kunden",
"taxmodel": "GROSS",
"_payment": {
"method": "CC",
"cctype": "Visa"
},
"_lines": [
{
"type": "product",
"is_line": true,
"quantity": "1",
"sku": "2113000016259",
"name": "Product name",
"unitprice": 19.99,
"amount": 19.99,
"discount_amount": 0,
"tax_amount": 3.33,
"taxclass": "REGULAR"
},
{
"type": "shipping",
"is_line": true,
"amount": 4.9,
"tax_amount": 0.82,
"taxclass": "REGULAR"
},
{
"type": "total",
"is_line": false,
"amount": 24.89,
"tax_amount": 4.15
}
],
"_shipping": {
"id": 2864,
"salutation": "Herr",
"firstname": "Stephan",
"lastname": "Muster",
"street": "Pottendorfer Straße 23",
"zip": "1120",
"city": "Wien",
"country": "AT",
"company": "ETRON",
"email": "[email protected]",
"phone": "+43 546 889797979",
"vat_id": "ATU192853434"
},
"_billing": {
"id": 2864,
"salutation": "Herr",
"firstname": "Stephan",
"lastname": "Muster",
"street": "Pottendorfer Straße 23",
"zip": "1120",
"city": "Wien",
"country": "AT",
"company": "ETRON",
"email": "[email protected]",
"phone": "+43 546 889797979",
"vat_id": "ATU1928533434"
}
}
]
}ShippingObject
OrderPaymentObject
OrderLineObject
OrderAddressObject
Mapping Tabelle, Anforderungen onRetail
OrderObject
OrderPaymentObject
OrderLineObject
OrderAddressObject
Last updated