action autodealerdata_get_dealer_sales_region_sales_get { label: "Premium. Brand sales by region and month" description: "Premium. Get regional sales by brand and month, broken down by day. Most recent data is typically only 2 days old for this endpoint.\n \nThe month field is in YYYY-MM-DD format. For example if you wanted sales data from April of 2020 the month field would be '2020-04-01'\n\nData availability depends on region and goes back up to 2016." provider: autodealerdata method: GET path: "/regionSales" encoding: json input: { type: "object" properties: { brandName: { type: "string" } jwt: { type: "string" } month: { type: "string" format: "date" } regionName: { type: "string" } } required: ["brandName", "jwt", "month", "regionName"] additionalProperties: false } output: { type: "object" properties: { brandName: { type: "string" } cacheTimeLimit: { type: "integer" } condition: { type: "string" } data: { type: "object" } modelName: { type: "string" } msg: { type: "string" } regionName: { type: "string" } } } }