Retrieve user details and profiles.
Every account on Field Nation is a User. This includes internal staff (Admins, Dispatchers) and external Providers (technicians).
Retrieve detailed information about a specific user by their ID.
GET /users/{user_id}
{
"id": 12345,
"first_name": "John",
"last_name": "Smith",
"email": "john.smith@example.com",
"phone": "+1-555-123-4567",
"thumbnail": "https://...",
"rating": 4.8,
"jobs_completed": 156,
"user_type": "provider"
}Providers are Users: All providers in the marketplace are users. Use the user_id to look up provider details, assign work orders, or add them to talent pools.
| Type | Description |
|---|---|
provider | External technician in the marketplace |
buyer | Staff member on a buyer company |
admin | Administrator with full access |
Last updated on