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

Clients

Manage client companies for work order organization and reporting.


Clients

Clients represent your end-customers (e.g., "Retail Chain X", "Enterprise Corp"). Tag work orders with a client_id to track work and costs by customer.

List Clients

Retrieve a paginated list of client companies.

GET /clients

Query Parameters:

ParameterDescription
columnsFields to include in response
per_pageResults per page
f_deactivatedFilter by deactivated status (0 or 1)
f_deletedFilter by deleted status (0 or 1)
listSaved list/filter name
smart_listSort by recently used/created

Response

{
  "results": [
    {
      "id": 102,
      "name": "Retail Chain X",
      "active": true,
      "created": "2024-01-15T10:30:00Z",
      "work_orders_count": 156
    }
  ],
  "metadata": {
    "total": 25,
    "page": 1,
    "per_page": 20
  }
}

Create Client

POST /clients

{
  "name": "New Customer Inc",
  "notes": "VIP customer - priority support"
}

Get Client Details

GET /clients/{client_id}

Using Clients in Work Orders

When creating a work order, associate it with a client:

{
  "title": "Install POS System",
  "client": { "id": 102 }
}

Reporting: Clients enable cost rollup and reporting. All work orders tagged with a client can be filtered and analyzed together.

Related Resources

  • Projects - Initiatives within a client
  • Work Order Creation - Using clients when creating work orders

Last updated on

Service Territories

Manage geographic zones and provider coverage.

Projects

Manage projects for work order templates and configuration.

On this page

Clients
List Clients
Response
Create Client
Get Client Details
Using Clients in Work Orders
Related Resources