action gamesparks_get_game_summary_using_get { label: "getGameSummary" provider: gamesparks method: GET path: "/restv2/game/{apiKey}/admin/notifications/summary" encoding: json input: { type: "object" properties: { apiKey: { type: "string" } endDate: { type: "string" format: "date" } stage: { type: "string" enum: ["LIVE", "PREVIEW"] } startDate: { type: "string" format: "date" } } required: ["apiKey", "endDate", "stage", "startDate"] additionalProperties: false } output: { type: "object" additionalProperties: true } }