action autodealerdata_get_dealer_sales_region_daily_sales_get { label: "Brand sales by region and Day" description: "Get regional sales by brand and day. Most recent data is typically only 2 days old for this endpoint.\n \nThe Day field is in YYYY-MM-DD format. For example if you wanted sales data from April 5th of 2020 the day field would be '2020-04-05'\n\nData availability depends on region and goes back up to 2016." provider: autodealerdata method: GET path: "/regionDailySales" encoding: json input: { type: "object" properties: { brandName: { type: "string" } day: { type: "string" format: "date" } jwt: { type: "string" } regionName: { type: "string" } } required: ["brandName", "day", "jwt", "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" } } } }