Multiple event monitoring added
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user