cURL
curl --request POST \ --url https://api.example.com/api/v1/auth/login \ --header 'Content-Type: application/json' \ --data ' { "client_id": "<string>", "client_secret": "<string>", "grant_type": "<string>" } '
{ "access_token": "<string>", "token_type": "bearer" }
Login and get access token.
Schema for user login.
Successful Response
Schema for JWT token response.