action gamesparks_get_retention_using_get { label: "Returns the percentage of user retention over the last 30 days" provider: gamesparks method: GET path: "/restv2/game/{apiKey}/admin/analytics/rollingRetention" encoding: json input: { type: "object" properties: { apiKey: { type: "string" } stage: { type: "string" enum: ["LIVE", "PREVIEW"] } } required: ["apiKey", "stage"] additionalProperties: false } output: { type: "object" additionalProperties: true } }