inbound_shipment_update

Arguments

ArgumentTypeRequiredDefaultDescription
dataUpdateInboundShipmentInput!Yes

Return Type

UpdateInboundShipmentOutput

Mutation

mutation inbound_shipment_update(
  $data: UpdateInboundShipmentInput!
) {
  inbound_shipment_update(
    data: $data
  ) {
    request_id
    complexity
    inbound_shipment {
      ...InboundShipmentFragment
    }
  }
}

Variables

{
  "data": {
    "customer_account_id": "abc123",
    "inbound_shipment_id": "abc123",
    "warehouse_id": "abc123",
    "purchase_orders_ids": ["abc123"],
    "carrier": "abc123",
    "estimated_truck_arrival": ISODateTime,
    "booking_contact_email": "abc123",
    "booking_contact_name": "abc123",
    "booking_contact_number": "abc123",
    "container_size": "abc123",
    "load_type": "abc123",
    "number_carton": 987,
    "pallets_quantity": 987,
    "pro_number": "abc123",
    "shipment_type": "abc123",
    "truck_arrived_at": ISODateTime
  }
}

Response

{
  "data": {
    "inbound_shipment_update": {
      "request_id": "abc123",
      "complexity": 987,
      "inbound_shipment": InboundShipment
    }
  }
}