action gamesparks_get_data_count_using_get { label: "Returns the count of executed query" provider: gamesparks method: GET path: "/restv2/game/{apiKey}/admin/analytics/count" encoding: json input: { type: "object" properties: { apiKey: { type: "string" } queryName: { type: "string" enum: ["activeUsersNow", "dailyActiveUsers", "averageDailyActiveUsers", "lastMonthlyActiveUsers", "monthlyActiveUsers", "averageSessionDuration"] } stage: { type: "string" enum: ["LIVE", "PREVIEW"] } } required: ["apiKey", "queryName", "stage"] additionalProperties: false } output: { type: "object" additionalProperties: true } }