Create Orders Response
Represents the list of created orders and the list of offers that could not be shipped
List of offers not shippable
List of orders
{ "offersNotShippable": [ { "__typename": "CreateOrdersOfferNotShippable" } ], "orders": [ { "__typename": "Order" } ] }
Order Updated
Customer information of the order
Expected order delivery date
Invoice information linked to the order
Lead time to ship of the order
Details of the modified order line
Payment destination in case of bank transfer
Order payment workflow
Order references
Latest date of order shipment
Information about order exclusion from seller statistics
{ "customer": { "__typename": "OrderUpdatedCustomer" }, "deliveryDate": { "__typename": "OrderUpdatedDeliveryDateTimeInterval" }, "invoiceDetails": { "__typename": "OrderUpdatedInvoiceDetails" }, "leadTimeToShip": 40, "orderLines": [ { "__typename": "OrderUpdatedOrderLine" } ], "paymentDestination": { "__typename": "IbanOrderPaymentDestination" }, "paymentWorkflow": "Example String", "references": { "__typename": "OrderReference" }, "shippingDeadline": "Example Custom Scalar", "shopStatistics": { "__typename": "ShopStatistics" } }
Order Updated Customer
Customer information of the order (billing address, organization information)
Data related to the accounting contact in the organization
Customer billing address
Data related to the delivery contact in the organization
Data related to the organization that created the order (B2B transactions)
{ "accountingContact": { "__typename": "OrderUpdatedCustomerContact" }, "billingAddress": { "__typename": "OrderCustomerBillingAddress" }, "deliveryContact": { "__typename": "OrderUpdatedCustomerContact" }, "organization": { "__typename": "OrderUpdatedCustomerOrganization" } }
Order Updated Customer Organization
Data related to the organization that created the order (B2B transactions)
Address of the organization
Identification number of the organization
Name of the organization
Tax identification number of the organization
{ "address": { "__typename": "CustomerOrganizationAddress" }, "identificationNumber": "Example String", "name": "Example String", "taxIdentificationNumber": "Example String" }