Automate routing using detailed logic and rules.
Smart Dispatch (formerly Auto Dispatch) automates the process of finding and assigning providers based on pre-set logic.
Manually trigger the Smart Dispatch logic for a work order.
POST /workorders/smart-dispatch
{
"work_order_ids": [1001, 1002, 1003],
"strategy": "standard"
}This will evaluate the work orders against your active routing rules and dispatch them accordingly.
Configure dispatch automation rules at the Project level.
GET /project/{project_id}/dispatch-settings
{
"mode": "automatic",
"rules": [
{
"order": 1,
"type": "preferred_group",
"target_id": 500,
"delay_hours": 0
},
{
"order": 2,
"type": "marketplace",
"criteria": { "rating": 4.5 },
"delay_hours": 24
}
]
}POST /project/dispatch-settings or PUT /project/{project_id}/dispatch-settings
{
"project_id": 123,
"mode": "automatic",
"rules": [
{
"order": 1,
"type": "talent_pool",
"target_id": 99,
"wait_time": 4
}
]
}Last updated on