action statsocial_get_reports_dates { label: "Get report dates available for a specific report" description: "Get report dates available for a specific report.\n" provider: statsocial method: GET path: "/reports/dates/" encoding: json input: { type: "object" properties: { report_hash: { type: "string" } } required: ["report_hash"] additionalProperties: false } output: { properties: { data: { type: "array" items: { type: "integer" } } msg: { type: "string" } success: { type: "string" } } } }