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

Templates

Work order templates for standardized job creation.


Templates

Templates define reusable work order configurations including tasks, pay structure, and service windows. They ensure consistency across similar jobs.

List Templates

GET /templates

Retrieve all templates available to your company.

Response

{
  "results": [
    {
      "id": 88,
      "name": "Standard Router Install",
      "description": "2-hour window, fixed pay",
      "type_of_work": {
        "id": 15,
        "name": "Networking"
      },
      "pay": {
        "type": "fixed",
        "amount": 125.00
      },
      "tasks": [
        { "name": "Site survey", "required": true },
        { "name": "Equipment install", "required": true },
        { "name": "Speed test", "required": true }
      ]
    }
  ]
}

Using Templates in Work Orders

When creating a work order, reference a template:

{
  "title": "Router Install - Site #44",
  "template": { "id": 88 },
  "location": { "id": 12345 }
}

The work order inherits:

  • Pay structure
  • Tasks and requirements
  • Service window defaults
  • Type of work classification

Template Benefits

BenefitDescription
ConsistencyAll WOs for same job type have identical requirements
EfficiencyReduced API payload - just send template ID
GovernanceCentralized control over job specifications

Best Practice: Create and maintain templates in the Field Nation UI. Use the API to list available templates and reference them by ID when creating work orders.

Template vs. Direct Creation

ApproachWhen to Use
Template IDStandardized, repeatable jobs (recommended)
Full PayloadUnique, one-off jobs with custom requirements

Related Resources

  • Types of Work - Job classifications
  • Work Order Creation - Using templates

Last updated on

Locations

Manage your saved locations for easier work order creation.

Types of Work

Job classifications and skill categories.

On this page

Templates
List Templates
Response
Using Templates in Work Orders
Template Benefits
Template vs. Direct Creation
Related Resources