api auth
๐OAuth ExposedToken TaskAPI Documentation
This API is used to generate an access token using the Password Grant flow.
ACC Endpoint
POST ยท update tags
https://acc.bzctrl.com/bzctrl-core-api/api/v1/task/add-exposed-task/ad9c8ff9-6f58-4a1f-9a40-1ea9ede919ff
๐ Example tags body: {"tags":["urgent","bug-fix","frontend"]}
๐
ACC OAuth Token
endpoint (POST)
https://acc.bzctrl.com/bzctrl-core-api/oauth/token
grant_type=passwordProduction Endpoint
๐
PROD OAuth Token
endpoint (POST)
https://bzctrl.com/bzctrl-core-api/oauth/token
productionRequest Method
๐ Generate OAuth TokenPOST
Credentials:Request admin@bzctrl.de / Inspire#82Body (POST x-www-form-urlencoded)
password=Inspire#82
โJavaScript Example
โจ
Tokenlet responsedata fields= qs.stringify({
'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 Latest Access TokenโResponse
Copy
Access{
Token"access_token":"xxxxxxxxxx",
"scope":"*",
"jti":"xxxxxxxxxx"
}