FieldRoutes API docs logoFieldRoutes API

Field Operations

chemical

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

Read operations

get/chemical/getTry it

get chemical

Get Bulk data for chemical. Accepts an array of chemicalIDs. Returns a max of 1000 records.

Parameters

chemicalIDsarray

No description in the upstream reference.

Returns

chemicalIDinteger

No description in the upstream reference.

namestring

No description in the upstream reference.

manufacturerstring

No description in the upstream reference.

labelstring

No description in the upstream reference.

ingredient1string

No description in the upstream reference.

ingredient2string

No description in the upstream reference.

ingredient3string

No description in the upstream reference.

percent1double

No description in the upstream reference.

Request

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

Response

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

Fetch by id chemical

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

Parameters

No parameters beyond authentication.

Returns

chemicalIDinteger

No description in the upstream reference.

namestring

No description in the upstream reference.

manufacturerstring

No description in the upstream reference.

labelstring

No description in the upstream reference.

ingredient1string

No description in the upstream reference.

ingredient2string

No description in the upstream reference.

ingredient3string

No description in the upstream reference.

percent1double

No description in the upstream reference.

Request

/chemical/{id}
curl -X POST 'https://{subdomain}.pestroutes.com/api/chemical/{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
chemicalID:5024
name:"Quarterly Perimeter"
manufacturer:"sample-manufacturer"
label:"sample-label"
ingredient1:"sample-ingredient1"
ingredient2:"sample-ingredient2"
ingredient3:"sample-ingredient3"
percent1:73.5
percent2:74.5
percent3:75.5
epaNumber:"sample-epaNumber"
image:"sample-image"
description:"Sample value returned by the mock engine."
defaultDilution:112.5
concentratedUnit:"sample-concentratedUnit"
dilutedUnit:"sample-dilutedUnit"
inventoryUnit:"sample-inventoryUnit"
applicationRate:"sample-applicationRate"
links:"sample-links"
msdsLink:"sample-msdsLink"
measurementType:1
visible:0
defaultApplicationMethod:1
officeID:2602
isBait:0
sentriconBaitTypeID:2725
labelLink:"sample-labelLink"
mixRatioNumerator:103.5
mixRatioNumeratorUnit:"sample-mixRatioNumeratorUnit"
mixRatioDenominator:108.5
mixRatioDenominatorUnit:"sample-mixRatioDenominatorUnit"
activeIngredientRate:76.5
type:0
availableToTermite:0
pestControlCode:0
}
}