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.
- 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
- Updating a Shipment
- Update the shipment with the ISF fields as they come in until you are ready to transmit.
updateShipment(input: UpdateShipmentInput): ShipmentPayload
- Transmitting the ISF
- Transmit the shipment's ISF. You will receive immediate validation errors if any fields are missing incorrect.
submitISF(key: KeyInput!): SubmitISFPayload
- Shipment Notifications
- Receive the response from CBP (
shipments_isfFiled
,shipments_isfRejected
and/orshipments_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.
- Receive the response from CBP (
link GraphQL Schema definition
- type Shipment implements Object {
- # INLT's unique ID for a shipment
- ID! :
- # The client's unique identifier for a shipment
- ID :
- # INLT ID of the importer associated with the shipment.
- Importer! :
- # Whether the shipment is for "first-time" importer with INLT.
- Boolean :
- # Request a hot entry for $20. Hot entries are filed within 2 hours of submission,
- # so long as the correct documents are included.
- Boolean :
- # The mode of transport of the shipment.
- MOT! :
- # Data relating to an IT In-Bond movement for the shipment
- EntryInBondInfo :
- # The name of the conveyance or vessel.
- String :
- # The shipment's consignee
- Consignee :
- # The shipment's buyer
- Location :
- # The US 2-letter state code of the shipment's final destination.
- String :
- # The country code of the exporting country.
- CountryCode :
- # The export date.
- Date :
- # The FIRMS code of the container freight station (CFS) or terminal at the port of
- # entry.
- FIRMSCode :
- # The FIRMS code of the selected CBP Centralized Exam Site, used if shipment is
- # subject to an exam.
- FIRMSCode :
- # The gross weight of the shipment.
- Float :
- # The date the shipment physically arrives in the US.
- Date :
- # Purchase order (PO) numbers associated with the shipment.
- String!] : [
- # The shipment's US port of unlading.
- CBPPortCode :
- # The shipment's foreign port of lading.
- ForeignPortCode :
- # The shipment's last free day (LFD) at the arrival port's terminal.
- Date :
- # The shipment's delivery location
- Location :
- # The shipment's voyage, flight, or trip number.
- String :
- # The consolidator of the shipment..
- Consolidator :
- # The ISF stuffing location
- StuffingLocation :
- # The ship-to location.
- Location :
- # Commercial invoices associated with the shipment.
- CommercialInvoice!] : [
- # Master bills associated with the shipment.
- MasterBill!] : [
- # Containers associated with the shipment.
- Container!] : [
- ISFProduct!] : [
- Supplier!] : [
- String :
- String :
- String :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- Boolean :
- DateTime! :
- DateTime! :
- ShipmentDoc] : [
- ShipmentMilestone!]! : [
- # The shipment's URL on app.inlt.com
- URL :
- }