Multiple event monitoring added

This commit is contained in:
CHIEFSOFT\ameye
2025-04-13 20:32:54 -04:00
parent 4ebc1dbfe0
commit 309bf0b138
3 changed files with 119 additions and 104 deletions
+5 -2
View File
@@ -9,15 +9,18 @@ autocall_bp = Blueprint("autocall", __name__)
@autocall_bp.route("/refresh-verify-disbursement", methods=["GET"])
def verify_transaction():
data = request.json()
api_url = f"{BASE_URL}/Disbursement"
logger.info(f"Calling Verify Components")
return jsonify(data), 200
@autocall_bp.route("/refresh-disbursement", methods=["GET"])
def disbursement():
data = request.json()
api_url = f"{BASE_URL}/Disbursement"
logger.info(f"Calling Disbursement Components")
return jsonify(data), 200
@autocall_bp.route("/payment-callback", methods=["POST"])
def payment_callback():
data = request.json()
logger.info(f"Calling Callback Components")
return jsonify(data), 200