Integrations connect external systems to your Transportial platform. They process data automatically when transport entities change — syncing with your ERP, telematics provider, accounting software, or any external system.
Data transformation pipelines with filters and data sources. They process events automatically when transport entities change (e.g., sync a new transport order to your ERP).
Pre-built connectors for specific platforms — board computers (Transics), payment processors (Stripe), GPS providers (EvoGPS, FleetAccess), and more.
File-based data exchange for systems that use EDI, CSV, or XML formats. Upload and download files on a schedule.
Automated notifications triggered by transport events — send status updates to customers, alert drivers, or notify your team when exceptions occur.
Expose API endpoints for external platforms to push or pull data from your Transportial environment.
curl -X POST https://api.otms.transportial.com/api/integration \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"name": "ERP Order Sync",
"type": "configured",
"description": "Sync transport orders to our ERP when status changes",
"enabled": true
}'Response:
{
"success": true,
"message": "OK",
"integration": {
"id": "integration-uuid",
"name": "ERP Order Sync",
"type": "configured",
"enabled": true,
"createdAt": "2026-03-22T10:00:00Z"
}
}Integrations use an event-driven queue:
1. Entity changes (order created, status updated, etc.)
2. IntegrationObject added to the processing queue
3. Scheduler picks up (~every 10 seconds)
4. Filters applied (should this event be processed?)
5. Data sources transform and route the data
6. Result: SUCCESS / ERROR / RETRYcurl -X GET "https://api.otms.transportial.com/api/integrations/0/20" \
-H "Authorization: Bearer YOUR_TOKEN"curl -X POST "https://api.otms.transportial.com/api/integrations/0/20" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"type": "configured",
"enabled": true
}'curl -X PUT https://api.otms.transportial.com/api/integration \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"id": "integration-uuid",
"enabled": false
}'curl -X DELETE "https://api.otms.transportial.com/api/integration/{id}" \
-H "Authorization: Bearer YOUR_TOKEN"Create OAuth credentials for an integration:
curl -X POST "https://api.otms.transportial.com/api/integration/generate/credentials" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"integrationId": "integration-uuid"
}'Configure OpenID Connect authentication:
curl -X PUT "https://api.otms.transportial.com/api/integration/{id}/openId" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"token": "openid-token-value"
}'Bulk import data through an integration:
curl -X POST "https://api.otms.transportial.com/api/integration/import/data" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"integrationId": "integration-uuid",
"data": [...]
}'Handle incoming emails to create entities automatically:
curl -X POST "https://api.otms.transportial.com/api/integration/email" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"from": "customer@example.com",
"subject": "New transport request",
"body": "Please arrange pickup..."
}'Validate your data mappings before deploying:
# Test data source mapping
curl -X POST "https://api.otms.transportial.com/api/integration/dataSource/mapping:test" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"mapping": { ... },
"testData": { ... }
}'
# Test file template mapping
curl -X POST "https://api.otms.transportial.com/api/integration/fileTemplate/mapping:test" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"mapping": { ... },
"testData": { ... }
}'curl -X GET "https://api.otms.transportial.com/api/integration/{id}/logs/0/20" \
-H "Authorization: Bearer YOUR_TOKEN"curl -X GET "https://api.otms.transportial.com/api/integration/{id}/objects/0/20" \
-H "Authorization: Bearer YOUR_TOKEN"curl -X GET "https://api.otms.transportial.com/api/integration/{id}/requestLogs/0/20" \
-H "Authorization: Bearer YOUR_TOKEN"curl -X GET "https://api.otms.transportial.com/api/integration/{id}/tasks/0/20" \
-H "Authorization: Bearer YOUR_TOKEN"- Install pre-built integrations from the App Store
- Set up webhooks and event notifications
- See the full API Reference for all integration endpoints