FTL Quotation


mutation {
     city {
      #find city method is using for start land point and finish land point
      findCity(
        latFrom: 34.0522342
        lngFrom: -118.2436849
        latTo: 46.482526
        lngTo: 30.7233095
      )
    }
    #main rate
    rate(
      validDateTo: "2020-05-10",
      transitTime: 50,
      currency: "USD"
    ) {
      ftl(
        rate: 2000,
        #volume in CBM
	      volume: 86
      )
    }
  }


                              

{
  "data": {
    "city": {
      "findCity": true
    },
    "rate": {
      #your rate id (shipment id) always returns in main rate
      "ftl": "48769"
    }
  }
}