FieldRoutes API docs logoFieldRoutes API

Field Operations

chemicalUse

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

Read operations

get/chemicalUse/getTry it

get chemicalUse

Get Bulk data for chemicalUse. Accepts an array of chemicalUseIDs. Returns a max of 1000 records.

Parameters

chemicalUseIDsarray

No description in the upstream reference.

Returns

chemicalUseIDinteger

No description in the upstream reference.

chemicalIDinteger

No description in the upstream reference.

officeIDinteger

No description in the upstream reference.

appointmentIDinteger

No description in the upstream reference.

customerIDinteger

No description in the upstream reference.

dateCreatedstring

No description in the upstream reference.

createdBystring

No description in the upstream reference.

serviceIDinteger

No description in the upstream reference.

Request

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

Response

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

Fetch by id chemicalUse

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

Parameters

No parameters beyond authentication.

Returns

chemicalUseIDinteger

No description in the upstream reference.

chemicalIDinteger

No description in the upstream reference.

officeIDinteger

No description in the upstream reference.

appointmentIDinteger

No description in the upstream reference.

customerIDinteger

No description in the upstream reference.

dateCreatedstring

No description in the upstream reference.

createdBystring

No description in the upstream reference.

serviceIDinteger

No description in the upstream reference.

Request

/chemicalUse/{id}
curl -X POST 'https://{subdomain}.pestroutes.com/api/chemicalUse/{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
chemicalUseID:6115
chemicalID:5024
officeID:2602
appointmentID:7501
customerID:2124
dateCreated:"2026-03-03 00:00:00"
createdBy:"sample-createdBy"
serviceID:1795
dilution:103.5
dosage:28.5
amount:21.5
concentratedAmount:23.5
concentratedUnit:"sample-concentratedUnit"
unit:"sample-unit"
targetInsects:"sample-targetInsects"
locationsTreated:"sample-locationsTreated"
applicationMethod:1
squareFoot:1
structureID:3681
mixRatioNumerator:103.5
mixRatioNumeratorUnit:"sample-mixRatioNumeratorUnit"
mixRatioDenominator:108.5
mixRatioDenominatorUnit:"sample-mixRatioDenominatorUnit"
activeIngredientRate:76.5
epaLot:"sample-epaLot"
pestControlCode:0
}
}