FieldRoutes API docs logoFieldRoutes API

Field Operations

applicationMethod

3 endpoints. Start at search to collect IDs, then resolve them through get.

Read operations

get/applicationMethod/getTry it

get applicationMethod

Get Bulk data for applicationMethod. Accepts an array of applciationMethodIDs. Returns a max of 1000 records.

Parameters

applciationMethodIDsarray

No description in the upstream reference.

Returns

applicationMethodIDinteger

No description in the upstream reference.

officeIDinteger

No description in the upstream reference.

applicationMethodstring

No description in the upstream reference.

visibleinteger

No description in the upstream reference.

systemReservedinteger

No description in the upstream reference.

Request

/applicationMethod/get
curl -X POST 'https://{subdomain}.pestroutes.com/api/applicationMethod/get' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -H 'Accept: application/json' \
  --data-urlencode 'applciationMethodIDs=value' \
  --data-urlencode 'authenticationKey=<your-key>' \
  --data-urlencode 'authenticationToken=<your-token>'

Response

success:true
]
count:2
}
by id/applicationMethod/{id}Try it

Fetch by id applicationMethod

Get applicationMethod data for single ID -- please provide a specific record ID in the URL structure.

Parameters

No parameters beyond authentication.

Returns

applicationMethodIDinteger

No description in the upstream reference.

officeIDinteger

No description in the upstream reference.

applicationMethodstring

No description in the upstream reference.

visibleinteger

No description in the upstream reference.

systemReservedinteger

No description in the upstream reference.

Request

/applicationMethod/{id}
curl -X POST 'https://{subdomain}.pestroutes.com/api/applicationMethod/{id}' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -H 'Accept: application/json' \
  --data-urlencode 'authenticationKey=<your-key>' \
  --data-urlencode 'authenticationToken=<your-token>'

Response

success:true
applicationMethodID:2783
officeID:2602
applicationMethod:"sample-applicationMethod"
visible:0
systemReserved:1
}
}