OBJECT

Shipment

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

link Shipment Flow

This short guide will walk you through creating and filing shipments.

  1. Creating a Shipment


    • Create the shipment with a unique shipment reference (called 'cid' in the API for client identifier), unique importer reference, MOT, plus any optional fields.
    • createShipment(input: CreateShipmentInput): ShipmentPayload
  2. Updating a Shipment


  3. Transmitting the ISF


    • Transmit the shipment's ISF. You will receive immediate validation errors if any fields are missing incorrect.
    • submitISF(key: KeyInput!): SubmitISFPayload
  4. Shipment Notifications


    • Receive the response from CBP (shipments_isfFiled, shipments_isfRejected and/or shipments_billMatch) as a notification via webhook: WebhookEventType. These will contain all the fields you need, including the shipment record in our system and status from CBP.

link GraphQL Schema definition

  • type Shipment implements Object {
  • # INLT's unique ID for a shipment
  • id: ID!
  • # The client's unique identifier for a shipment
  • cid: ID
  • # INLT ID of the importer associated with the shipment.
  • importer: Importer!
  • # Whether the shipment is for "first-time" importer with INLT.
  • beginner: Boolean
  • # Request a hot entry for $20. Hot entries are filed within 2 hours of submission,
  • # so long as the correct documents are included.
  • hot: Boolean
  • # The mode of transport of the shipment.
  • mot: MOT!
  • # Data relating to an IT In-Bond movement for the shipment
  • inBond: EntryInBondInfo
  • # The name of the conveyance or vessel.
  • conveyanceName: String
  • # The shipment's consignee
  • consignee: Consignee
  • # The shipment's buyer
  • buyer: Location
  • # The US 2-letter state code of the shipment's final destination.
  • destinationCode: String
  • # The country code of the exporting country.
  • exportCountryCode: CountryCode
  • # The export date.
  • exportDate: Date
  • # The FIRMS code of the container freight station (CFS) or terminal at the port of
  • # entry.
  • firmsCode: FIRMSCode
  • # The FIRMS code of the selected CBP Centralized Exam Site, used if shipment is
  • # subject to an exam.
  • examSite: FIRMSCode
  • # The gross weight of the shipment.
  • grossWeight: Float
  • # The date the shipment physically arrives in the US.
  • importDate: Date
  • # Purchase order (PO) numbers associated with the shipment.
  • poNumbers: [String!]
  • # The shipment's US port of unlading.
  • portOfUnladingCode: CBPPortCode
  • # The shipment's foreign port of lading.
  • portOfLadingCode: ForeignPortCode
  • # The shipment's last free day (LFD) at the arrival port's terminal.
  • lfd: Date
  • # The shipment's delivery location
  • deliveryLocation: Location
  • # The shipment's voyage, flight, or trip number.
  • tripNumber: String
  • # The consolidator of the shipment..
  • consolidator: Consolidator
  • # The ISF stuffing location
  • stuffingLocation: StuffingLocation
  • # The ship-to location.
  • shipTo: Location
  • # Commercial invoices associated with the shipment.
  • invoices: [CommercialInvoice!]
  • # Master bills associated with the shipment.
  • masterBills: [MasterBill!]
  • # Containers associated with the shipment.
  • containers: [Container!]
  • isfProducts: [ISFProduct!]
  • isfSellers: [Supplier!]
  • entryNumber: String
  • entryType: String
  • isfNumber: String
  • emptyReturned: Boolean
  • availableForPickup: Boolean
  • containerOutgate: Boolean
  • split: Boolean
  • canceled: Boolean
  • billMatch: Boolean
  • customsExam: Boolean
  • customsHold: Boolean
  • customsRelease: Boolean
  • docsSubmitted: Boolean
  • isfNeedsBond: Boolean
  • entryFiled: Boolean
  • entryRejected: Boolean
  • entrySubmitted: Boolean
  • pendingConfirmation: Boolean
  • freightRelease: Boolean
  • isfFiled: Boolean
  • isfSkipped: Boolean
  • isfSubmitted: Boolean
  • entrySkipped: Boolean
  • releaseFiled: Boolean
  • createdTime: DateTime!
  • updatedTime: DateTime!
  • docs: [ShipmentDoc]
  • milestones: [ShipmentMilestone!]!
  • # The shipment's URL on app.inlt.com
  • url: URL
  • }