Skip to main content
Learn about the /vehicles endpoint. Vehicle objects contain vehicle information within a particular payroll account that the user has connected via Argyle Link. High level structure of the vehicle object.

The vehicle object

Attributes

  • id (string (uuid), optional): Unique ID of the vehicle associated with a user’s payroll account.
  • account (string (uuid), optional): ID of the payroll account associated with the vehicle.
  • employer (string, optional): The name of the company or entity that employs the user.
  • vin (string, optional): Vehicle Identification Number (VIN).
  • make (string, optional): The make or brand of the vehicle manufacturer—for example, Ford, Toyota.
  • model (string, optional): The model of the vehicle—for example, Fiesta, Prius.
  • year (string, optional): The manufacture year of the vehicle—for example, 2011.
  • identification (string, optional): The license plate or other ID depending on the vehicle type.
  • metadata (object, optional): Holds additional available, often unstructured information about this data resource.

Retrieve a vehicle

GET /v1/vehicles/{id}
  • Retrieve a vehicle object with the supplied ID.
  • This request returns a vehicle object if you provided a valid identifier.

Path parameters

  • id (string (uuid), required): The identifier of the vehicle to be retrieved.

List vehicles

GET /v1/vehicles
  • List all vehicles.
  • This request returns an object with a results property that contains an array of up to limit vehicle objects.

Query parameters