Field NationDeveloper Platform
Field NationDeveloper Platform
IntroductionQuick StartAPI Playground

Getting Started

API Reference

People

UsersProvidersTalent PoolsTalent Pool GroupsService Territories

Organization

ClientsProjectsLocations

Configuration

TemplatesTypes of WorkCompany
Resources

Service Territories

Manage geographic zones and provider coverage.


Service Territories

Service Territories allow you to define geographic areas and assign specific providers to cover them. This is useful for building regional networks.

List Service Territories

GET /service-territories

{
  "results": [
    {
      "id": "st-uuid-1234",
      "name": "Midwest Region",
      "description": "MN, WI, IA coverage",
      "provider_count": 45,
      "created": { "utc": "2024-01-01 10:00:00" }
    }
  ]
}

Create Territory

POST /service-territories

{
  "name": "Midwest Region",
  "description": "MN, WI, IA coverage"
}

Get Territory Details

GET /service-territories/{service_territory_uuid}

{
  "id": "st-uuid-1234",
  "name": "Midwest Region",
  "description": "MN, WI, IA coverage",
  "providers": [ ... ]
}

Update Territory

PUT /service-territories/{service_territory_uuid}

Delete Territory

DELETE /service-territories/{service_territory_uuid}


Managing Providers in Territories

List Providers

GET /service-territories/{service_territory_uuid}/providers

Add Provider

Providers are typically added via Projects linking to the territory.

Remove Provider

DELETE /service-territories/{service_territory_uuid}/providers/{provider_id}

Query Parameters:

  • tierId (optional): Remove provider from specific talent pool within group.
  • removeFromProject (boolean): If true, removes the provider from all service territories in the project.

Either tierId or removeFromProject is required.

Usage in Projects

Service territories are most powerful when linked to Projects. This allows you to auto-route work in a specific zip code to the providers assigned to that territory.

Loading diagram...

Related

  • Projects - Linking territories
  • Providers - Managing individual providers
  • Talent Pools - Alternative grouping method

Last updated on

Talent Pool Groups

Manage groups containing multiple talent pools.

Clients

Manage client companies for work order organization and reporting.

On this page

Service Territories
List Service Territories
Create Territory
Get Territory Details
Update Territory
Delete Territory
Managing Providers in Territories
List Providers
Add Provider
Remove Provider
Usage in Projects
Related