mirror of
https://github.com/creyD/creyPY.git
synced 2026-04-12 19:30:30 +02:00
fix: add company id to invite user
This commit is contained in:
@@ -101,7 +101,7 @@ def request_verification_mail(sub: str) -> None:
|
|||||||
return re.json()
|
return re.json()
|
||||||
|
|
||||||
|
|
||||||
def create_user_invite(email: str) -> dict:
|
def create_user_invite(email: str, company_id:str) -> dict:
|
||||||
re = requests.post(
|
re = requests.post(
|
||||||
f"https://{AUTH0_DOMAIN}/api/v2/users",
|
f"https://{AUTH0_DOMAIN}/api/v2/users",
|
||||||
headers={"Authorization": f"Bearer {get_management_token()}"},
|
headers={"Authorization": f"Bearer {get_management_token()}"},
|
||||||
@@ -111,6 +111,7 @@ def create_user_invite(email: str) -> dict:
|
|||||||
"password": create_random_password(),
|
"password": create_random_password(),
|
||||||
"verify_email": False,
|
"verify_email": False,
|
||||||
"app_metadata": {"invitedToMyApp": True},
|
"app_metadata": {"invitedToMyApp": True},
|
||||||
|
"user_metadata":{"company_ids":[company_id]}
|
||||||
},
|
},
|
||||||
timeout=5,
|
timeout=5,
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user