From 3a30e0abfff99ba8fdaf0464e162c738361bcbd7 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Sat, 5 Apr 2025 21:03:16 -0400 Subject: [PATCH] VALID_API_KEY --- app/api/integrations/simbrella.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/integrations/simbrella.py b/app/api/integrations/simbrella.py index b04b1df..e3ef62d 100644 --- a/app/api/integrations/simbrella.py +++ b/app/api/integrations/simbrella.py @@ -35,7 +35,7 @@ class SimbrellaIntegration: } logger.error(f"This is PayLoad: {str(payload)}",exc_info=True) - auth = HTTPBasicAuth(settings.VALID_APP_ID, settings.VALID_APP_SECRET) + auth = HTTPBasicAuth(settings.VALID_APP_ID, settings.VALID_API_KEY) try: response = requests.post(url, json=payload, timeout=10, auth=auth)