action autodealerdata_get_regions_get_regions_get { label: "Get a list of region names" description: "Get region names. These 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: "/getRegions" 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" } } } }