Sha256: 44c54f00b8ad88bade8f750617b40d3eb5e7d29a9134e13682bd3672cba515e8
Contents?: true
Size: 1.23 KB
Versions: 2
Compression:
Stored size: 1.23 KB
Contents
# SwaggerClient::VINDecoderApi All URIs are relative to *http://api.marketcheck.com/v1* Method | HTTP request | Description ------------- | ------------- | ------------- [**decode**](VINDecoderApi.md#decode) | **GET** /vin/{vin}/specs | VIN Decoder # **decode** > Build decode(api_key, vin) VIN Decoder Get the basic information on specifications for a car identified by a valid VIN ### Example ```ruby # load the gem require 'marketcheck_ruby_client' api_instance = SwaggerClient::VINDecoderApi.new api_key = "api_key_example" # String | The API Authentication Key. Mandatory with all API calls. vin = "vin_example" # String | VIN to decode begin #VIN Decoder result = api_instance.decode(api_key, vin) p result rescue SwaggerClient::ApiError => e puts "Exception when calling VINDecoderApi->decode: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **api_key** | **String**| The API Authentication Key. Mandatory with all API calls. | **vin** | **String**| VIN to decode | ### Return type [**Build**](Build.md) ### Authorization No authorization required ### HTTP reuqest headers - **Content-Type**: Not defined - **Accept**: application/json
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
marketcheck_ruby_client-1.0.8 | docs/VINDecoderApi.md |
marketcheck_ruby_client-1.0.7 | docs/VINDecoderApi.md |