OrderImportShippingInput
No description
input OrderImportShippingInput {
address1: String!
address2: String
carrierServiceIdentifier: String!
city: String!
companyName: String
email: String
firstName: String
isoCountry: String!
lastName: String
lines: [OrderImportShippingOrderLineInput!]
number: String
parcels: [OrderImportParcelInput!]
province: String
telephone: String
warehouseCode: String
zipCode: String!
}
Fields
OrderImportShippingInput.address1 ● String! non-null scalar
The street address.
OrderImportShippingInput.address2 ● String scalar
A secondary address line. Stored as submitted (unlike the billing address2, which is appended to address1).
OrderImportShippingInput.carrierServiceIdentifier ● String! non-null scalar
Identifier for both carrier and related service
OrderImportShippingInput.city ● String! non-null scalar
The city.
OrderImportShippingInput.companyName ● String scalar
The company name of the recipient.
OrderImportShippingInput.email ● String scalar
The email address of the recipient.
OrderImportShippingInput.firstName ● String scalar
The first name of the recipient.
OrderImportShippingInput.isoCountry ● String! non-null scalar
The country, as an ISO 3166-1 alpha-2 code (for example IT).
OrderImportShippingInput.lastName ● String scalar
The last name of the recipient.
OrderImportShippingInput.lines ● [OrderImportShippingOrderLineInput!] list input
Splits the item quantities across shippings, referencing only item lines. Not needed for a single shipping dispatching the whole order, required when there is more than one shipping. Each lineNumber must match an item order line number, and the quantities of each line across all shippings must add up exactly to the ordered quantity.
OrderImportShippingInput.number ● String scalar
The number identifying the shipping within the order.
OrderImportShippingInput.parcels ● [OrderImportParcelInput!] list input
Optional parcel details of the shipping.
OrderImportShippingInput.province ● String scalar
The province.
OrderImportShippingInput.telephone ● String scalar
The shipping telephone. Normalized to the 00 international notation (+390212345678 is stored as 00390212345678).
OrderImportShippingInput.warehouseCode ● String scalar
Not required when the channel has only one warehouse
OrderImportShippingInput.zipCode ● String! non-null scalar
The postal code.
Member Of
OrderImportInput input