action autodealerdata_get_model_names_get_models_get { label: "Get a list of model names" description: "Get brand model names for currently active models. This endpoint does not return model names that have been discontinued or have \nsold less than 10 vehicles in the last month and a half.\n\nThese names are used as arguments for other endpoints. The names are generally not case sensitive\nwhen used with other endpoints, but it is best practice to use the names returned by this endpoint without changes." provider: autodealerdata method: GET path: "/getModels" encoding: json input: { type: "object" properties: { brandName: { type: "string" } jwt: { type: "string" } } required: ["brandName", "jwt"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { brandName: { type: "string" } cacheTimeLimit: { type: "integer" } condition: { type: "string" } data: { type: "array" items: { type: "object" required: ["modelName"] properties: { modelName: { type: "string" } } } } modelName: { type: "string" } msg: { type: "string" } regionName: { type: "string" } } } }