action autodealerdata_get_brand_names_get_brands_get { label: "Get a list of brand names" description: "Get vehicle brand names. \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: "/getBrands" encoding: json input: { type: "object" properties: { jwt: { type: "string" } } required: ["jwt"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { brandName: { type: "string" } cacheTimeLimit: { type: "integer" } condition: { type: "string" } data: { type: "array" items: { type: "string" } } modelName: { type: "string" } msg: { type: "string" } regionName: { type: "string" } } } }