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

Locations

Manage your saved locations for easier work order creation.


Locations

Instead of sending full address details with every work order creation request, you can save Locations in your address book and reference them by ID.

Creating a Location

POST /locations

{
  "name": "Headquarters",
  "notes": "Main entrance is around the back.",
  "address1": "730 2nd Ave S",
  "city": "Minneapolis",
  "state": "MN",
  "zip": "55402",
  "country": "US"
}

Listing Locations

GET /locations

You can search for locations by name or address properties.

Using a Saved Location

When creating a work order, simply provide the location_id.

{
  "title": "Fix Server at HQ",
  "location": {
    "mode": "saved",
    "id": 12345
  }
}

Consistency: Using saved locations ensures address data is consistent across all work orders for a specific site, which helps with reporting and history tracking.

Last updated on

Projects

Manage projects for work order templates and configuration.

Templates

Work order templates for standardized job creation.

On this page

Locations
Creating a Location
Listing Locations
Using a Saved Location