cURL
curl --request POST \ --url https://api.console.corti.app/functions/v1/public/auth/token \ --header 'Content-Type: application/json' \ --data '{ "email": "jsmith@example.com", "password": "<string>" }'
{ "accessToken": "<string>", "tokenType": "bearer", "expiresIn": 123 }
Authenticate using email and password to receive an access token
User's email address
User's password
Authentication successful
JWT access token
"bearer"
Token expiration time in seconds
Was this page helpful?