api auth
OAuth Token API Documentation
This API is used to generate an access token using the Password Grant flow.
ACC Endpoint
https://acc.bzctrl.com/bzctrl-core-api/oauth/token
Production Endpoint
https://bzctrl.com/bzctrl-core-api/oauth/token
Request Method
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"
}