From 85671081ecbe5f0c4412351cddf46fa63fb2915d Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Sun, 6 Apr 2025 00:28:44 -0400 Subject: [PATCH] transaction_id --- app/api/services/eligibility_check.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/api/services/eligibility_check.py b/app/api/services/eligibility_check.py index fe525e6..38212dc 100644 --- a/app/api/services/eligibility_check.py +++ b/app/api/services/eligibility_check.py @@ -73,14 +73,14 @@ class EligibilityCheckService(BaseService): # Simulate processing response_data = { - "customerId": "CN621868", - "transactionId": "TX12345", + "customerId": customer_id, + "transactionId": transaction_id, "countryCode": "NG", "msisdn": "3451342", "eligibleOffers": offers, "resultDescription": "Successful", "resultCode": "00", - "accountId": "ACN8263457" + "accountId": account_id } return response_data