api auth
OAuth2 Authentication Token
POSTAPI Endpoint
ACC |
https://acc.bzctrl.com/bzctrl-core-api/oauth/token
|
| Production | https://bzctrl.com/bzctrl-core-api/oauth/token |
💡 Usage Note: A successful authentication returns the token or authorization credentials required for RequestMethod:POST
Request Body
(Content-Type: x-www-form-urlencoded)urlencoded
grant_type=
grant_type=password
&username=example@example.com
&password=Ex@mpl3!password=Ex@mpl3!Sample Response
Status: 200 OK
{
{
"access_token": "xxxxxxxxxx",
"refresh_token": "xxxxxxxxxx",
"token_type": "Bearer",
"expires_in":3600,
3600,
"scope": "*",
"jti": "xxxxxxxxxx"
}
subsequent API communications. Include the furtherall communication.access_token as a Bearer token in your request headers.