Field NationDeveloper Platform
Field NationDeveloper Platform
Overview

Work Orders

Resources

Get Location GETList Locations GETCreate Location POST
OrganizationLocations

Create Location


Add a location to company

POST
/api/rest/v2/locations

Authorization

access_token
access_token<token>

OAuth 2.0 Access Token

In: query

Request Body

application/json

Location request body

address1?string

Address line 1

address2?string

Address line 2

city?string

City

state?string

State

zip?number

Postal/ZIP code

country?string

Country

name*string

Name

display_name?string

Display name

type*string

Type

notes?string

Notes

client?number

Client

group?string

Group

contact?

Contact

curl -X POST "https://api-sandbox.fndev.net/api/rest/v2/locations" \  -H "Content-Type: application/json" \  -d '{    "name": "Headquarters",    "type": "office",    "address1": "100 Main St",    "city": "New York",    "state": "NY",    "zip": 10001,    "country": "USA",    "display_name": "NYC HQ",    "notes": "Main entrance on 5th Ave.",    "client": 101,    "group": "East Coast",    "contact": {      "name": "John Doe",      "phone": "555-0199",      "email": "jdoe@fieldnation.com"    }  }'
{
  "id": 123
}
{
  "status": 500,
  "message": "Operation successful."
}
{
  "status": 500,
  "message": "Operation successful."
}
{
  "status": 500,
  "message": "Operation successful."
}

Response Body

application/json

application/json

application/json

application/json

Last updated on

List Locations GET

Previous Page

Get workorder template by id GET

Next Page

curl -X POST "https://api-sandbox.fndev.net/api/rest/v2/locations" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Headquarters",
    "type": "office",
    "address1": "100 Main St",
    "city": "New York",
    "state": "NY",
    "zip": 10001,
    "country": "USA",
    "display_name": "NYC HQ",
    "notes": "Main entrance on 5th Ave.",
    "client": 101,
    "group": "East Coast",
    "contact": {
      "name": "John Doe",
      "phone": "555-0199",
      "email": "jdoe@fieldnation.com"
    }
  }'