diff --git a/app/api/routes/routes.py b/app/api/routes/routes.py index a27b909..9713cc0 100644 --- a/app/api/routes/routes.py +++ b/app/api/routes/routes.py @@ -928,7 +928,13 @@ def refresh_daily_report(): # AutomationCalls.process_stripe_payment_refresh(data) return {"status": "ok"}, 200 - +# Generative Actions +@api.route("/auto/generativeAction", methods=["GET"]) +def refresh_generative_action(): + data = request.get_json() + logger.info(f"Generative Actions ==>>>> {data}") + # AutomationCalls.process_stripe_payment_refresh(data) + return {"status": "ok"}, 200 # Health Check Endpoint @api.route("/health", methods=["GET"])