API TRUCK Rates

This document describes API RATES. This API documentation allows you to record TRUCK rates.

https://sirius.searates.com/api/rates/index?key=YOUR_API_KEY_HERE

Property Type Description
key string, required API key: hexadecimal number

TRUCK rates


mutation {
    truck {
        create_ftl (
            profile: PROFILE_ID,
            from: "Odesa",
            to: "Kyiv",
            currency: "USD",
            m3: 10,
            max_weight: 12000,
            flat_rate: 9,
            rate: 0.8,
            per: "Km"
        )
        create_ltl (
            profile: PROFILE_ID,
            from: "Odesa",
            to: "Kyiv",
            currency: "USD",
            one_mt: 85,
            one_m3: 85,
            three_m3: 75,
            five_m3: 60
        )
    }
}


                              

{
  "data": {
    "truck": {
      "create_ftl": true
      "create_ltl": true
    }
  }
}