action statsocial_get_reports_tweet_create { label: "Used to create tweet reports" description: "This report details the audience of the users who have tweeted content that matches what was provided in the keywords. To create custom or twitter reports other methods must be used.\n" provider: statsocial method: GET path: "/reports/tweet/create/" encoding: json input: { type: "object" properties: { end_date: { type: "integer" } filter: { type: "string" } report_name: { type: "string" } start_date: { type: "integer" } terms: { type: "string" } } required: ["end_date", "report_name", "start_date", "terms"] additionalProperties: false } output: { properties: { data: { type: "object" properties: { aggregate_report_hash: { type: "string" } daily_report_hash: { type: "string" } monthly_report_hash: { type: "string" } weekly_report_hash: { type: "string" } } } msg: { type: "string" } success: { type: "string" } } } }