You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -368,6 +404,7 @@ When custom error responses are specified for an operation, the SDK may also rai
368
404
from codat_bankfeeds import CodatBankFeeds
369
405
from codat_bankfeeds.models import errors, shared
370
406
407
+
371
408
with CodatBankFeeds(
372
409
security=shared.Security(
373
410
auth_header="Basic BASE_64_ENCODED(API_KEY)",
@@ -404,11 +441,12 @@ with CodatBankFeeds(
404
441
405
442
### Override Server URL Per-Client
406
443
407
-
The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
444
+
The default server can be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
408
445
```python
409
446
from codat_bankfeeds import CodatBankFeeds
410
447
from codat_bankfeeds.models import shared
411
448
449
+
412
450
with CodatBankFeeds(
413
451
server_url="https://api.codat.io",
414
452
security=shared.Security(
@@ -529,6 +567,7 @@ You can set the security parameters through the `security` optional parameter wh
529
567
from codat_bankfeeds import CodatBankFeeds
530
568
from codat_bankfeeds.models import shared
531
569
570
+
532
571
with CodatBankFeeds(
533
572
security=shared.Security(
534
573
auth_header="Basic BASE_64_ENCODED(API_KEY)",
@@ -558,6 +597,7 @@ The `CodatBankFeeds` class implements the context manager protocol and registers
0 commit comments