Sample code for 30+ languages & platforms
Delphi ActiveX

SugarCRM Logout

See more SugarCRM Examples

Demonstrates how to logout of a session.

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;
rest: TChilkatRest;
sbReq: TChilkatStringBuilder;
sbJson: TChilkatStringBuilder;
json: TChilkatJsonObject;

begin
success := 0;

rest := TChilkatRest.Create(Self);

success := rest.Connect('your.site.domain',443,1,1);
if (success <> 1) then
  begin
    Memo1.Lines.Add(rest.LastErrorText);
    Exit;
  end;

rest.AddHeader('Cache-Control','no-cache');
rest.AddHeader('OAuth-Token','<access_token>');

sbReq := TChilkatStringBuilder.Create(Self);

sbJson := TChilkatStringBuilder.Create(Self);
success := rest.FullRequestSb('POST','/rest/v10/oauth2/logout',sbReq.ControlInterface,sbJson.ControlInterface);
if (success <> 1) then
  begin
    Memo1.Lines.Add(rest.LastErrorText);
    Exit;
  end;

if (rest.ResponseStatusCode <> 200) then
  begin
    Memo1.Lines.Add('Received error response code: ' + IntToStr(rest.ResponseStatusCode));
    Memo1.Lines.Add('Response body:');
    Memo1.Lines.Add(sbJson.GetAsString());
    Exit;
  end;

json := TChilkatJsonObject.Create(Self);
json.LoadSb(sbJson.ControlInterface);

// The following code parses the JSON response.
// A sample JSON response is shown below the sample code.

success := json.BoolOf('success');

// A sample JSON response body that is parsed by the above code:

// {
//   "success": true
// }

Memo1.Lines.Add('Example Completed.');
end;