action autodealerdata_get_dealers_get_dealers_by_region_get { label: "Premium. Dealers in a region." description: "Premium. Dealership information in a given region. Returns name, address, state, zipCode, and IDs. Results are paginated with up to 30 results per page." provider: autodealerdata method: GET path: "/getDealersByRegion" encoding: json input: { type: "object" properties: { jwt: { type: "string" } page: { type: "integer" } regionName: { type: "string" } } required: ["jwt"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { brandName: { type: "string" } cacheTimeLimit: { type: "integer" } condition: { type: "string" } data: { type: "object" required: ["dealers", "maxPages", "page"] properties: { dealers: { type: "array" items: { type: "object" required: ["dealerName", "zipCode", "state", "address", "ids"] properties: { address: { type: "string" } dealerName: { type: "string" } ids: { type: "array" items: { type: "integer" } } state: { type: "string" } zipCode: { type: "integer" } } } } maxPages: { type: "integer" } page: { type: "integer" } } } modelName: { type: "string" } msg: { type: "string" } regionName: { type: "string" } } } }