api auth
OAuth Token API Documentation
This API is used to generate an access token using the Password Grant flow.
Prod: |
Request MethodMethod:
POST
Request Body (x-www-form-urlencoded)
grant_type=password
username=admin@bzctrl.de
password=Inspire#82
Response Fields
Successful responses contain the following keys:
• access_token
• refresh_token
• token_type
• expires_in
• scope
• jti
Sample Response
{
"access_token":"xxxxxxxxxx",
"refresh_token":"xxxxxxxxxx",
"token_type":"Bearer",
"expires_in":3600,
"scope":"*",
"jti":"xxxxxxxxxx"
}