INPUT_OBJECT

CreateShipmentInput

Create a shipment. Used to file an ISF, entry, and/or in-bond. See https://help.inlt.com/customs-brokerage/what-is-an-entry.

link GraphQL Schema definition

  • input CreateShipmentInput {
  • # The client's unique identifier for a shipment
  • cid: String
  • # The ID of the importer associated with the shipment.
  • importer: KeyInput!
  • # The mode of transport of the shipment.
  • mot: MOT!
  • # Data relating to an IT In-Bond movement for the shipment
  • inBond: EntryInBondInfoInput
  • # The name of the conveyance or vessel. Required for entry.
  • conveyanceName: String
  • # An ID referring to an existing Consignee entity (do not include if same as the
  • # Importer). A foreign Importer must designate a US Consignee. Required for entry
  • # and ISF.
  • consignee: KeyInput
  • # An ID referring to an existing Location entity (do not include if same as the
  • # Importer). Required for entry and ISF.
  • buyer: KeyInput
  • # The US 2-letter state code of the shipment's final destination. Required for
  • # entry.
  • destinationCode: String
  • # The country code of the exporting country. Required for entry.
  • exportCountryCode: CountryCode
  • # The export date. Required for entry.
  • exportDate: Date
  • # The FIRMS code of the container freight station (CFS) or terminal at the port of
  • # entry.
  • firmsCode: FIRMSCode
  • # The gross weight of the shipment. Required for entry.
  • grossWeight: Float
  • # The date the shipment physically arrives in the US. Required for entry.
  • importDate: Date
  • # Purchase order (PO) numbers associated with the shipment.
  • poNumbers: [String!]
  • # The shipment's US port of unlading. Required for entry.
  • portOfUnladingCode: CBPPortCode
  • # The shipment's foreign port of lading. Required for entry.
  • portOfLadingCode: ForeignPortCode
  • # The shipment's last free day (LFD) at the arrival port's terminal.
  • lfd: Date
  • # The ID of the delivery location, an existing Location entity.
  • deliveryLocation: KeyInput
  • # The shipment's voyage, flight, or trip number. Required for entry.
  • tripNumber: String
  • # The ID of the consolidator, an existing Location. Required for the ISF.
  • consolidator: KeyInput
  • # The ID of the ISF stuffing location, an existing Location. Required for the ISF.
  • stuffingLocation: KeyInput
  • # Information associated with the ship-to location, an existing Location entity.
  • # Required for the ISF.
  • shipTo: KeyInput
  • # Commercial invoices associated with the shipment. Required for entry.
  • invoices: [CommercialInvoiceInput!]
  • # Master bills associated with the shipment. Required for entry and ISF.
  • masterBills: [MasterBillInput!]
  • # Containers associated with the shipment. Required for entry if shipment is
  • # containerized.
  • containers: [ContainerInput!]
  • # ISF Seller IDs for existing Supplier records. Required for ISF.
  • isfSellers: [KeyInput!]
  • # ISF Product IDs associated with the shipment. Required for ISF.
  • isfProducts: [ISFProductInput!]
  • }

link Require by