action statsocial_get_reports_custom_create { label: "Step 3 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: GET path: "/reports/custom/create/" encoding: json input: { type: "object" properties: { filter: { type: "string" } upload_hash: { type: "string" } } required: ["upload_hash"] additionalProperties: false } output: { properties: { data: { type: "object" properties: { report_hash: { type: "string" } } } msg: { type: "string" } success: { type: "string" } } } }