Patch Order Customer Billing Address Input
Customer 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
Phone secondary
Address state
First information line of the address
Second information line of the address
Address zip code, mandatory with some exceptions
{ "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" }
Patch Order Customer Organization Input
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": "PatchOrderCustomerOrganizationAddressInput" }, "identificationNumber": "Example String", "name": "Example String", "taxIdentificationNumber": "Example String" }
Cancel Order Lines Input
List of representations of cancellations to be created
Please note: If the taxes are not specified, the prices with mode TAX_EXCLUDED and with mode TAX_INCLUDED will return the same amounts. Possible values:
- TAX_EXCLUDED: the price fields (price, unit price, shipping price and order total prices) do not include taxes (taxes come on top of the price amount).
- TAX_INCLUDED: the price fields include the tax amounts. If not specified, the default order tax mode of the platform is used.
{ "cancelations": [ { "__typename": "CancelOrderLineInput" } ], "taxMode": "Example String" }
Cancel Order Line Input
The offer part amount to be canceled with taxes
The currency (iso format) used by the shop (the field is required if the shop is not using the default Operator platform currency)
The fees to be canceled
Order line's identifier that must be canceled
The quantity of goods to cancel
Cancellation's reason code
The shipping charges with taxes to be canceled
{ "amount": { "__typename": "CancelledAmountInput" }, "currency": "Example Custom Scalar", "fees": [ { "__typename": "CancellationFeeInput" } ], "orderLineId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "quantity": 40, "reasonCode": "Example String", "shippingAmount": { "__typename": "CancelledShippingAmountInput" } }