Order
No description
type Order {
externalId: ID!
facilityId: Int!
facility: Facility!
orderNumber: String
direction: OrderDirection!
orderType: String
purchaseOrder: String
requestedShipDate: String
requestedDeliveryDate: String
shipperName: String
shipperAddress: Address
shipperEmail: String
consigneeName: String
consigneePhoneNumber: String
carrier: String
carrierService: String
bolNumber: String
sealNumber: String
items: [OrderItem!]!
status: OrderStatus!
shipmentId: Int
}
Fields
Order.externalId ● ID! non-null scalar
Order.facilityId ● Int! non-null scalar
Order.facility ● Facility! non-null object
Order.orderNumber ● String scalar
The unique identifier for this Order. It can be provided and used by customer to identify the specific order. This orderNumber is usually the same as customer's internal order number.