Class: SynsbasenApi::Vehicle
- Extended by:
- Findable, Searchable
- Defined in:
- lib/synsbasen_api/resources/vehicle.rb
Overview
The Vehicle
class provides methods for interacting with vehicle-related
endpoints in the Synsbasen API. It extends the Client
class.
Constant Summary
Constants inherited from Client
Class Method Summary collapse
-
.find_by_registration(registration, expand: []) ⇒ ApiResponse
Retrieves information about a vehicle based on its registration number.
-
.find_by_vin(vin, expand: []) ⇒ ApiResponse
Retrieves information about a vehicle based on its VIN (Vehicle Identification Number).
Methods included from Findable
Methods included from Searchable
Methods inherited from Client
Class Method Details
.find_by_registration(registration, expand: []) ⇒ ApiResponse
Retrieves information about a vehicle based on its registration number.
18 19 20 21 |
# File 'lib/synsbasen_api/resources/vehicle.rb', line 18 def find_by_registration(registration, expand: []) escaped_registration = CGI.escape(registration) get("/v1/#{resource_name}/registration/#{escaped_registration}", expand: ) end |
.find_by_vin(vin, expand: []) ⇒ ApiResponse
Retrieves information about a vehicle based on its VIN (Vehicle Identification Number).
28 29 30 |
# File 'lib/synsbasen_api/resources/vehicle.rb', line 28 def find_by_vin(vin, expand: []) get("/v1/#{resource_name}/vin/#{vin}", expand: ) end |