Verify
Verify if a carrier has been observed within 150 miles of an origin, destination, or along the lane within the last 90 days.
This information can help to mitigate fraud and ensure accurate capacity claims during the carrier vetting process.
Logic
Check to see if a carrier has been observed within 150 miles of an
Origin
Destination
Or along the lane in between
If any of the three checks are true, then the carrier is verified. GenLogs uses sensor data to confirm carrier locations along with other third party data sets.
Authentication
Include the following headers in your requests:
Access-Token: The access token obtained from the "Create Access Token" endpoint.
x-api-key: The API key provided by GenLogs. This header must be included in the request.
Permissions
The verifier-carrier
permission is required to access this endpoint.
Endpoint
URL:
https://api.genlogs.io/visual_sightings/verify
Method:
GET
Query Parameters
usdot (string, Required): usdot of the detected carrier.
origin_city (string, Required): Name of the city of the starting location.
origin_state (string, Required): Name of the state of the starting location.
destination_city (string, Optional): Name of the city of the destination location.
destination_state (string, Optional): Name of the state of the destination location.
Response
200 OK: A JSON object containing the message verified true or false
400 Bad Request: If required parameters are missing or invalid.
401 Unauthorized: If the authentication credentials (email and password) are missing or incorrect.
403 Forbidden: Access to the requested resource is forbidden.
500 Internal Server Error: If there is an issue on the server that prevents processing the request.
Response Body:
verified (boolean): true or false
Request Example:
Last updated