Table of Contents
Revoke user tokens
Overview
If your users want to disconnect their integration with a Reckon product, your application will need to revoke the latest refresh_token and access_token that you have obtained for them.
The users can also access the Identity Server Permission page to revoke your access manually. However, we highly recommend third-party app providers to have the revocation feature as part of Disconnect from Reckon Product/s function.
You will need to send two calls to Reckon Identity Server:
- Send the
access_tokenin the first payload's body- token:
{{access_token value}} - token_type_hint:
access_token
- token:
- Send the
refresh_tokenin the second payload's body- token:
{{refresh_token value}} - token_type_hint:
refresh_token
- token:
Endpoint
https://identity.reckon.com/connect/revocation
Headers
Key | Value |
Authorization | Basic {{encoded clientId:clientSecret}} |
Content-Type | application/x-www-form-urlencoded |
Body
Key | Value |
token |
|
token_type_hint |
|
Screenshots
access_token

refresh_token

Response
If your request was approved, you will receive a 200 OK response.
You can learn more about it by visiting IdentityServer3 documentation.