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