LogoutAsync

Logs out the current user by invalidating the access token via the /token/logout endpoint. Returns (Task indicating if logout was successful.)

Overview of LogoutAsync goes here.

Name Description

Logout Async

Example in C#

// Returns: Boolean
var item = await client.LogoutAsync();

Example in CURL



           curl -X POST \
               https://api.us.acresecurity.cloud/token/logout \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'