From 76681a9f3631ab429c1bc43c2682136392d23d0f Mon Sep 17 00:00:00 2001 From: lennyaiko Date: Fri, 11 Apr 2025 09:38:53 +0100 Subject: [PATCH] fix the headers --- app/utils/auth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/utils/auth.py b/app/utils/auth.py index 4792796..e693171 100644 --- a/app/utils/auth.py +++ b/app/utils/auth.py @@ -5,6 +5,6 @@ def get_headers(): return { "Content-Type": "application/json", "Accept": "application/json", - "api_key": settings.BANK_CALL_API_KEY, - "app_id": settings.BANK_CALL_APP_ID, + "x-api-key": settings.BANK_CALL_API_KEY, + "App-Id": settings.BANK_CALL_APP_ID, } -- 2.34.1