cURL
curl --request POST \ --url https://api.anycheck.id/auth/login \ --header 'Content-Type: application/json' \ --data ' { "email": "[email protected]", "password": "<string>" } '
{ "access_token": "<string>", "refresh_token": "<string>", "expires_in": 123 }
Authenticate user and receive JWT token
Login successful
JWT access token
JWT refresh token
Token expiration time in seconds
Was this page helpful?