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:

  1. Go to SettingsIntegrationsAPI Keys
  2. Generate a key
  3. 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

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):

  1. Set up a webhook receiver on your end
  2. In FreightConnect, go to SettingsWebhooks
  3. Register your webhook URL
  4. Select the events you care about (load posted, quote received, shipment delivered)
  5. 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

Last updated: April 2026