Finding and working with service providers in the marketplace.
The power of Field Nation is the network of skilled technicians (providers).
You generally do not "search" for providers by name in the API to route to them blindly. Instead, you utilize Talent Pools and Talent Pool Groups.
Providers are automatically matched to your work orders based on:
If you know a provider's ID (from a previous work order), you can look them up:
GET /users/{user_id}
{
"id": 25,
"first_name": "Sarah",
"last_name": "Johnson",
"rating": 4.9,
"jobs_completed": 342,
"certifications": ["CompTIA A+", "BICSI"]
}Route a work order to all providers in a talent pool:
POST /workorders/{work_order_id}/mass-route
{
"talent_pool_id": 9921
}Assign a specific provider to a work order:
POST /workorders/{work_order_id}/assignee
{
"user": { "id": 12345 }
}When providers are routed a work order, they can:
Best Practice: Build curated Talent Pools in the Field Nation UI, then reference them by ID in your API integration for consistent routing.
Last updated on