From 5087afcca683fcf1f052107a2a14c1f474aca23b Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Sat, 21 Jun 2025 11:27:53 -0400 Subject: [PATCH] repayment id --- app/api/services/repayment.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/api/services/repayment.py b/app/api/services/repayment.py index 1b69323..8def45d 100644 --- a/app/api/services/repayment.py +++ b/app/api/services/repayment.py @@ -67,8 +67,10 @@ class RepaymentService(BaseService): return ResponseHelper.error(result_description="Invalid Customer or Account") # Simulated processing logic + # TODO start using repayment_id instead if id or Id response_data = { - "id": repayment.id, + "Id": repayment.id, + "repayment_id": repayment.id, "initiated_by": repayment.initiated_by, "transactionId": transaction_id, "customerId": customer_id,