Sample code for 30+ languages & platforms
C#

Quickbooks Revoke OAuth2 Token

See more QuickBooks Examples

Demonstrates how to revoke a QuickBooks OAuth2 access token.

Chilkat C# Downloads

C#
bool success = false;

//  This example requires the Chilkat API to have been previously unlocked.
//  See Global Unlock Sample for sample code.

//  This example assumes we previously obtained an OAuth2 access token for QuickBooks.

Chilkat.JsonObject jsonToken = new Chilkat.JsonObject();
success = jsonToken.LoadFile("qa_data/tokens/qb-access-token.json");
if (success != true) {
    Debug.WriteLine("Failed to load qb-access-token.json");
    return;
}

//  The access token JSON looks something like this:

//  {
//    "expires_in": 3600,
//    "x_refresh_token_expires_in": 8726400,
//    "refresh_token": "L011546037639r ... 3vR2DrbOmg0Sdagw",
//    "access_token": "eyJlbmMiOiJBMTI4Q0 ... oETJEMbeggg",
//    "token_type": "bearer"
//  }

//  This code sends the following request:

//  POST https://developer.api.intuit.com/v2/oauth2/tokens/revoke HTTP/1.1
//  Accept: application/json
//  Authorization: Basic UTM0dVB...wM1d2
//  Content-Type: application/json
//  
//  {
//      "token": "{bearerToken or refreshToken}"
//  }

//  Use this online tool to generate HTTP code from a sample request: 
//  Generate Code from a Sample HTTP Request

Chilkat.Http http = new Chilkat.Http();
http.SetRequestHeader("Accept","application/json");
http.BasicAuth = true;
http.Login = "QUICKBOOKS-CLIENT-ID";
http.Password = "QUICKBOOKS-CLIENT-SECRET";

Chilkat.JsonObject json = new Chilkat.JsonObject();
json.UpdateString("token",jsonToken.StringOf("access_token"));

string url = "https://developer.api.intuit.com/v2/oauth2/tokens/revoke";
Chilkat.HttpResponse resp = new Chilkat.HttpResponse();
success = http.HttpJson("POST",url,json,"application/json",resp);
if (success == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

Debug.WriteLine("Response status code = " + Convert.ToString(resp.StatusCode));
Debug.WriteLine("Response body:");
Debug.WriteLine(resp.BodyStr);