Integrations / Tms Integrations
TMS Integrations
Roadmap. Pre-built TMS connectors (McLeod, TMW/Trimble, Turvo, AscendTMS) are on the FreightConnect roadmap and are not live yet. What's available today is the API-first path below — the same REST API and webhooks the platform itself runs on. If a specific TMS connector matters to your operation, tell us at support@freightconnect.ai — connector priority is driven by customer demand.
What Works Today: API-First Integration (Any TMS)
Most TMS platforms can call REST APIs or receive webhooks. That's all you need to connect FreightConnect to your existing system:
- Go to Settings → Integrations → API Keys
- Generate a key
- Use the API Reference to:
- Create shipments:
POST /api/v1/shipments - Run carrier matching:
POST /api/v1/loads/{id}/match - Get rate quotes:
GET /api/v1/rates/{shipment_id} - Update shipment status:
PATCH /api/v1/shipments/{id}/status - Pull tracking events:
GET /api/v1/shipments/{id}/events
- Create shipments:
Your development team can build a basic connector in a few hours.
Custom Webhook Integration
If your TMS can only receive webhooks (not call APIs directly):
- Set up a webhook receiver on your end
- In FreightConnect, go to Settings → Webhooks
- Register your webhook URL
- Select the events you care about (load posted, quote received, shipment delivered)
- Test the webhook
See Webhooks for event payloads and retry behavior.
Field Mapping Example
If your TMS uses different field names, map them in your connector:
| Your TMS | FreightConnect | |---|---| | Shipper_Company | shipper_name | | Origin_City / Origin_State | origin | | Destination_City / Destination_State | destination | | Pounds | weight_lbs | | Equipment | equipment_type | | BidRate / YourRate | rate |
Planned Connectors
| TMS | Status | |-----|--------| | McLeod | Roadmap | | TMW (Trimble) | Roadmap | | Turvo | Roadmap | | AscendTMS | Roadmap |
Enterprise customers can sponsor a connector build — contact info@freightconnect.ai.
What's Next
- API Overview — detailed REST API reference
- Webhooks — event-driven integrations
- CSV Import/Export — bulk data without code