Order Customer
Represents a customer who placed an order
Data related to the accounting contact in the organization. Null before shipping (or acceptance, depending on platform setting).
Customer's billing address. Null before shipping (or acceptance, depending on platform setting).
Customer's civility
Customer's identifier
Data related to the delivery contact in the organization. Null before shipping (or acceptance, depending on platform setting).
Customer's email
Customer's first name
Customer's last name
Customer's locale
Data related to the organization that created the order (B2B transactions)
Customer's Shipping address. Null before shipping (or acceptance, depending on platform setting).
{ "accountingContact": { "__typename": "OrderCustomerAccountingContact" }, "billingAddress": { "__typename": "OrderCustomerBillingAddress" }, "civility": "Example String", "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "deliveryContact": { "__typename": "OrderCustomerDeliveryContact" }, "email": "Example String", "firstname": "Example String", "lastname": "Example String", "locale": "Example Custom Scalar", "organization": { "__typename": "CustomerOrganization" }, "shippingAddress": { "__typename": "OrderCustomerShippingAddress" } }
Order Customer Billing Address
Represents a customer's billing address
Address city
Civility of the person associated with the address
Company of the person associated with the address
Second company information of the person associated with the address
Country ISO 3166-1 code of the address
First name of the person associated with the address
Last name of the person associated with the address
Phone number
Secondary phone number
Address state
First information line of the address street
Second information line of the address street
Address zip code
{ "city": "Example String", "civility": "Example String", "company": "Example String", "company2": "Example String", "country": "Example Custom Scalar", "firstname": "Example String", "lastname": "Example String", "phone": "Example String", "phoneSecondary": "Example String", "state": "Example String", "street1": "Example String", "street2": "Example String", "zipCode": "Example String" }
Customer Organization
Represents a customer's organization details
Address of the organization. Required for new organizations. Null before shipping (or acceptance, depending on platform setting).
Number used to identify the customer organization as an established business in a country. E.g: SIRET number in France, NIF in Spain. Required for new organizations. Null before shipping (or acceptance, depending on platform setting).
Name of the organization.
Customer's organization id (from the operator's system).
Tax identification number of the organization. Null before shipping (or acceptance, depending on platform setting).
{ "address": { "__typename": "CustomerOrganizationAddress" }, "identificationNumber": "Example String", "name": "Example String", "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "taxIdentificationNumber": "Example String" }
Order Shipping
Represents an order's shipping information
Order's shipping deadline
Order's shipping price (sum of order line's shipping price)
PickUp DropOff (PUDO) point identifier
Order shipping type
Order shipping zone
{ "deadline": "Example Custom Scalar", "price": 40, "pudoId": "Example String", "type": { "__typename": "OrderShippingType" }, "zone": { "__typename": "OrderShippingZone" } }