action autodealerdata_get_model_names_all_get_inactive_models_get { label: "Get a list of model names including discontinued models" description: "Get all model names including discontinued models. Because these models are no longer built, or have very poor market performance\nthey are not incuded in the normal getModels endpoint. Many users itterate through the model names with our new vehicle sales\nendpoints and waste some of their quota making self contradictory requests. This endpoint was created to aleviate the use case where\nsomeone requests information on new vehicle sales for a model that has not been sold new for a long, long, time. \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: "/getInactiveModels" 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" } } } }