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 {
rail {
create_container (
profile: PROFILE_ID,
from: "Dnipro",
to: "Lviv",
currency: "USD",
st20: 400,
st40: 600,
terms: "FCA-FCA",
soc: "SOC",
transit_time: 2
)
create_fw (
profile: PROFILE_ID,
from: "Dnipro",
to: "Lviv",
currency: "USD",
per_wagon: 850,
sf: 1.5,
max_cap: 68,
transit_time: 7
)
create_tank (
profile: PROFILE_ID,
from: "Dnipro",
to: "Lviv",
currency: "USD",
per_wagon: 1100,
transit_time: 7
)
create_covered (
profile: PROFILE_ID,
from: "Dnipro",
to: "Lviv",
currency: "USD",
per_wagon: 850,
transit_time: 7
)
create_hopper (
profile: PROFILE_ID,
from: "Dnipro",
to: "Lviv",
currency: "USD",
per_wagon: 750,
sf: 1.5,
max_cap: 68,
transit_time: 7
)
}
}
{
"data": {
"truck": {
"create_container": true
"create_fw": true
"create_tank": true
"create_covered": true
"create_hopper": true
}
}
}