api auth
API Endpoint
Request Method: POST
Request Body (x-www-form-urlencoded)
grant_type=password
username=example@example.com
password=Ex@mpl3!
Sample Response
{
"access_token":"xxxxxxxxxx",
"refresh_token":"xxxxxxxxxx",
"token_type":"Bearer",
"expires_in":3600,
"scope":"*",
"jti":"xxxxxxxxxx"
}
A successful authentication returns the token or authorization required for further communication.