Enforce qualifications and skill requirements on work orders.
Certain work requires specific certifications or qualifications. You can enforce these on a work order to ensure only qualified providers can accept.
GET /workorders/{id}/qualifications
{
"results": [
{
"id": 45,
"name": "CompTIA A+",
"required": true,
"type": "certification"
},
{
"id": 67,
"name": "Background Check",
"required": true,
"type": "screening"
}
]
}POST /workorders/{id}/qualifications
{
"qualification_id": 45,
"required": true
}DELETE /workorders/{id}/qualifications/{qualification_id}
| Type | Description | Examples |
|---|---|---|
certification | Industry credentials | CompTIA A+, BICSI, Cisco |
screening | Background checks | Drug test, Criminal check |
insurance | Coverage requirements | Liability insurance |
tool | Equipment ownership | Ladder, specific tools |
When routing, providers are automatically filtered by qualifications:
{
"selection_rule": {
"rules": [
{ "name": "qualification", "value": 45 }
]
}
}Providers must have uploaded and verified their qualifications on Field Nation before they can request work requiring those qualifications.
Track problems reported during work execution.
GET /workorders/{id}/problems
POST /workorders/{id}/problems
{
"problem_type_id": 5,
"description": "Site not ready - equipment not delivered"
}PUT /workorders/{id}/problems/{problem_id}
{
"status": "resolved"
}Last updated on