Takes a set of user credentials and returns an access and refresh JSON web token pair to prove the authentication of those credentials.
Parameters
email: str
minLength1
password: str
minLength1
Returns
Create
from overmind_lab import OvermindLab
client = OvermindLab()
token = client.auth.token.create(
email="x",
password="x",
)
print(token.access){
"access": "access",
"refresh": "refresh"
}Returns Examples
{
"access": "access",
"refresh": "refresh"
}