action autodealerdata_vin_decode_vin_decode_get { label: "Vin decoder and Recall Info" description: "Decodes the provided North American vin and provides recall information if available. \nWe require at least the first 12 out of 17 characters in the vin to attempt a decode. The vin is not case sensitive.\nIf passEmpty (default False) is True we will also include the empty fields in the response json. \nIf includeRecall (default True) is True we will include recall data reported to the NHTSA. Set False for a faster response." provider: autodealerdata method: GET path: "/vinDecode" encoding: json input: { type: "object" properties: { includeRecall: { type: "boolean" } jwt: { type: "string" } passEmpty: { type: "boolean" } vin: { type: "string" } } required: ["jwt", "vin"] additionalProperties: false } output: { type: "object" properties: { brandName: { type: "string" } cacheTimeLimit: { type: "integer" } condition: { type: "string" } data: { type: "object" } modelName: { type: "string" } msg: { type: "string" } regionName: { type: "string" } } } }