action statsocial_post_reports_custom_generate { label: "Step 1 of executing custom report" description: "Used to create a custom report. This report treats the list of ids or handles as the audience (not their followers as in the twitter report). To create follower or tweet reports other methods must be used.\n" provider: statsocial method: POST path: "/reports/custom/generate/" encoding: json input: { type: "object" properties: { report_name: { type: "string" } } required: ["report_name"] additionalProperties: false } output: { properties: { data: { type: "object" properties: { upload_hash: { type: "string" } } } msg: { type: "string" } success: { type: "string" } } } }