Constructor
# new DecodeVINValuesBatch(userConfigopt)
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
userConfig |
FetchConfig |
<optional> |
User configuration options to construct the class with. |
Methods
# async DecodeVINValuesBatch(inputString) → {Promise.<DecodeVINValuesBatchResponse>}
This decodes a batch of VINs that are submitted in a standardized format in a string and returns multiple decodes in a flat format.
The inputString
parameter should be in the following format:
vin , modelYear ; vin , modelYear ; vin , modelYear ...
"modelYear" is optional, the output for each VIN decode is in the same format as produced by the "Decode VIN (flat format)" method.
Parameters:
Name | Type | Description |
---|---|---|
inputString |
string | A string of Vehicle Identification Numbers (full or partial) following the format listed in the description. |
- Api Response object.
Promise.<DecodeVINValuesBatchResponse>