API documentation for FTL Operations
FTL API (1.0.0)
Languages
Servers
Sandbox Server
https://apitest.drayeasy.com/
Production Server
https://api.drayeasy.com/
Bodyapplication/jsonrequired
Rate number from the quote API response
Example: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
The cargo value will be used in the calculation of the insurance premium.
Example: 2000
0: Time window and first come first serve, 1: Specific pickup time, 2: Represent me to make an appointment
Enum012
Example: 0
0: Time window and first come first serve, 1: Specific destination time, 2: Represent me to make an appointment
Enum012
Example: 0
- Sandbox Serverhttps://apitest.drayeasy.com/api/v2/ftl/shipments
- Production Serverhttps://api.drayeasy.com/api/v2/ftl/shipments
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://apitest.drayeasy.com/api/v2/ftl/shipments \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"pickup_company_name": "test",
"pickup_contact_name": "John",
"pickup_contact_email": "1@1.com",
"pickup_contact_phone": "1234567890",
"pickup_contact_phone_ext": "123",
"pickup_address1": "123 Main St",
"pickup_address2": "Apt 4B",
"destination_company_name": "test",
"destination_contact_name": "John",
"destination_contact_email": "2@1.com",
"destination_contact_phone": "1234567890",
"destination_contact_phone_ext": "456",
"destination_address1": "456 Elm St",
"destination_address2": "Suite 5",
"pickup_open_time": "08:00",
"pickup_close_time": "17:00",
"destination_open_time": "09:00",
"destination_close_time": "18:00",
"customer_reference_number": "REF123",
"pickup_special_request": "Leave at front desk",
"destination_special_request": "Call upon arrival",
"pickup_number": "",
"dropoff_number": "",
"rate_number": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"is_insurance_entrusted": true,
"cargo_value": 2000,
"commodity_name": "Electronics",
"total_weight": 12345,
"total_units": 50,
"package_type": "Pallet",
"cartons": 123,
"pickup_time_type": 0,
"pickup_specific_time": "10:00",
"destination_time_type": 0,
"destination_specific_time": "15:00"
}'Response
application/json
{ "data": { "order_number": "FS241205028749" } }