action statsocial_post_reports_custom_insert { label: "Step 2 of executing custom report" description: "Inserting twitter ids or handles into a custom report. This is used for custom reports only\n" provider: statsocial method: POST path: "/reports/custom/insert/" encoding: json input: { type: "object" properties: { ids: { type: "array" items: { type: "object" } } upload_hash: { type: "string" } } required: ["ids", "upload_hash"] additionalProperties: false } output: { properties: { data: { type: "object" properties: { distinct_relations: { type: "integer" } total_relations: { type: "integer" } } } msg: { type: "string" } success: { type: "string" } } } }