Skip to content

Commit

Permalink
implemeted organisations enpoint (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mopsgeschwindigkeit authored Nov 4, 2023
1 parent d8d6b49 commit a5cb9c3
Show file tree
Hide file tree
Showing 3 changed files with 839 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sxapi/integrationV2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
BaseAPI,
)
from sxapi.integrationV2.accounts import Accounts
from sxapi.integrationV2.organisations import Organisations
from sxapi.integrationV2.tranlations import Translations
from sxapi.integrationV2.users import Users

Expand All @@ -18,6 +19,7 @@ def __init__(self, base_url=None, email=None, password=None, api_token=None):
self.users = Users(api=self)
self.translations = Translations(api=self)
self.accounts = Accounts(api=self)
self.organisations = Organisations(api=self)

super().__init__(
base_url,
Expand Down
Loading

0 comments on commit a5cb9c3

Please sign in to comment.