Hi. I am trying to create an user via the python s...
# help
h
Hi. I am trying to create an user via the python sdk:
Copy code
user_creation = UserCreation(
            id=username,
            invite_user=True, # Not sure what this does ...
        )
        client.auth_api.create_user(user_creation=user_creation)
But got:
Copy code
HTTP response body: {"message":"Invalid email format"}
The API seem to not allow to provide email .... Using v107
Never mind: invite_user need to be False
👍 1
i
👍