cURL
curl --request POST \ --url https://api.anycheck.ai/auth/login \ --header 'Content-Type: application/json' \ --data ' { "email": "[email protected]", "password": "your_password", "method": "LDAP" } '
{ "access_token": "<string>", "refresh_token": "<string>" }
Authenticate user and receive JWT token.
"[email protected]"
"your_password"
Authentication method (only for external authentication). For password authentication, omit the method field.
LDAP
"LDAP"
Login successful
JWT access token
JWT refresh token
Was this page helpful?