From 32e831299b7be77390d9d6231398aab1bb8a74d9 Mon Sep 17 00:00:00 2001 From: DJ Gillespie Date: Mon, 21 Sep 2020 20:49:01 -0600 Subject: [PATCH] [QRTR-88] hardcoded services redirect url for now --- connection/connections/plaid_client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/connection/connections/plaid_client.py b/connection/connections/plaid_client.py index 1da02d3..c0a4156 100755 --- a/connection/connections/plaid_client.py +++ b/connection/connections/plaid_client.py @@ -42,7 +42,8 @@ class Connection(AbstractConnectionClient): client_id=self.PLAID_CLIENT_ID, secret=self.PLAID_SECRET, environment=self.PLAID_ENV, - api_version='2019-05-29') + api_version='2019-05-29', + webhook='https://qrtr-services.herokuapp.com/connection/plaid-webhook/') public_key = self.credentials.get('public_token') auth_token = self.credentials.get('auth_token') if not auth_token and public_key: