Sample code for 30+ languages & platforms
Delphi ActiveX

Quickbooks Revoke OAuth2 Token

See more QuickBooks Examples

Demonstrates how to revoke a QuickBooks OAuth2 access token.

Chilkat Delphi ActiveX Downloads

Delphi ActiveX
uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_TLB;

...

procedure TForm1.Button1Click(Sender: TObject);
var
success: Integer;
jsonToken: TChilkatJsonObject;
http: TChilkatHttp;
json: TChilkatJsonObject;
url: WideString;
resp: TChilkatHttpResponse;

begin
success := 0;

// 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.

jsonToken := TChilkatJsonObject.Create(Self);
success := jsonToken.LoadFile('qa_data/tokens/qb-access-token.json');
if (success <> 1) then
  begin
    Memo1.Lines.Add('Failed to load qb-access-token.json');
    Exit;
  end;

// 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

http := TChilkatHttp.Create(Self);
http.SetRequestHeader('Accept','application/json');
http.BasicAuth := 1;
http.Login := 'QUICKBOOKS-CLIENT-ID';
http.Password := 'QUICKBOOKS-CLIENT-SECRET';

json := TChilkatJsonObject.Create(Self);
json.UpdateString('token',jsonToken.StringOf('access_token'));

url := 'https://developer.api.intuit.com/v2/oauth2/tokens/revoke';
resp := TChilkatHttpResponse.Create(Self);
success := http.HttpJson('POST',url,json.ControlInterface,'application/json',resp.ControlInterface);
if (success = 0) then
  begin
    Memo1.Lines.Add(http.LastErrorText);
    Exit;
  end;

Memo1.Lines.Add('Response status code = ' + IntToStr(resp.StatusCode));
Memo1.Lines.Add('Response body:');
Memo1.Lines.Add(resp.BodyStr);
end;