action gamesparks_get_analytics_data_using_get { label: "Returns the results of executed query defined by the parameters passed in" provider: gamesparks method: GET path: "/restv2/game/{apiKey}/admin/analytics" encoding: json input: { type: "object" properties: { apiKey: { type: "string" } dataType: { type: "string" enum: ["activeDevices", "activeLocations", "activeUsers", "averageBandwidthPerUser", "averageDauOverMau", "averageJsExecutionTime", "averageRequestsPerUser", "averageResponseTime", "averageResponseTimePerType", "scriptLogLevelsCount", "sessionAnalytic", "storagePerUser", "customAnalyticTotal", "customAnalyticUser", "timedAnalyticTotal", "sessionAnalyticTotal", "connectedUsers"] } endDate: { type: "string" format: "date" } keys: { type: "string" } precision: { type: "string" enum: ["HOURLY", "DAILY", "MONTHLY"] } stage: { type: "string" enum: ["LIVE", "PREVIEW"] } startDate: { type: "string" format: "date" } } required: ["apiKey", "dataType", "endDate", "precision", "stage", "startDate"] additionalProperties: false } output: { type: "object" additionalProperties: true } }