/auth/login
POST
/auth/loginFirst, authenticate with your Thinkeo credentials to get a temporary accessToken. This token will be used to identify the Teams accessible with your account and retrieve the Team ID for which you want to create a permanent bearer token.
Request
Body Params application/json
email
string
required
password
string
required
teamId
optional
Any of
Example
{
"email": "{{login}}",
"password": "{{password}}",
"teamId": "{{teamId}}"
}
Request samples
Responses
OK(200)
Bad Request(400)
413(413)
415(415)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
accessToken
string
required
refreshToken
string
required
Example
{
"accessToken": "string",
"refreshToken": "string"
}
Last modified: 9 days ago