...
Click on the user icon in the upper right corner and select an option </> API.
Click on OAuth2 Application.
The OAuth2 application defines the requester for access to the application interface. Only full access accounts can create the application. The application can be used to authorize any system account.
When creating an application, you need to enter the following information:
name - any name, e.g. "My application"
application description - any description
list of redirect URLs - The URL to which the user is redirected after authorization
After OAuth2 is created, the application is generated:
...
Code Block |
---|
POST: https://system2.netrex.cz/oauth2/revoke?access_token=ACCESS_TOKEN |
Parameter | Description |
| Existing token to delete. |
Answer in JSON format:
Code Block | ||
---|---|---|
| ||
{"success":true,”message”:”Info message”} |
The given access token (even with its refresh token) is canceled.
\uD83D\uDCCB Related articles
...