Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3b0737b

Browse files
committed
expose the new api
1 parent 0e8c4a1 commit 3b0737b

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ Available Management Endpoints
156156
- DeviceCredentials() ( ``Auth0().device_credentials`` )
157157
- Rules() ( ``Auth0().rules`` )
158158
- Users() ( ``Auth0().users`` )
159+
- UsersByEmail() ( ``Auth0().users_by_email`` )
159160
- Blacklists() ( ``Auth0().blacklists`` )
160161
- Emails() ( ``Auth0().emails`` )
161162
- Jobs() ( ``Auth0().jobs`` )

auth0/v3/management/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@
1515
from .tickets import Tickets
1616
from .user_blocks import UserBlocks
1717
from .users import Users
18+
from .users_by_email import UsersByEmail
1819

auth0/v3/management/auth0.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
from .stats import Stats
99
from .tickets import Tickets
1010
from .users import Users
11+
from .users_by_email import UsersByEmail
1112
from .tenants import Tenants
1213
from .client_grants import ClientGrants
1314
from .guardian import Guardian
@@ -35,6 +36,7 @@ def __init__(self, domain, token):
3536
self.stats = Stats(domain, token)
3637
self.tickets = Tickets(domain, token)
3738
self.users = Users(domain, token)
39+
self.users_by_email = UsersByEmail(domain, token)
3840
self.tenants = Tenants(domain, token)
3941
self.client_grants = ClientGrants(domain, token)
4042
self.guardian = Guardian(domain, token)

0 commit comments

Comments
 (0)