Sample code for 30+ languages & platforms
.NET Core C#

SugarCRM Logout

See more SugarCRM Examples

Demonstrates how to logout of a session.

Chilkat .NET Core C# Downloads

.NET Core C#
bool success = false;

Chilkat.Rest rest = new Chilkat.Rest();

success = rest.Connect("your.site.domain",443,true,true);
if (success != true) {
    Debug.WriteLine(rest.LastErrorText);
    return;
}

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

Chilkat.StringBuilder sbReq = new Chilkat.StringBuilder();

Chilkat.StringBuilder sbJson = new Chilkat.StringBuilder();
success = rest.FullRequestSb("POST","/rest/v10/oauth2/logout",sbReq,sbJson);
if (success != true) {
    Debug.WriteLine(rest.LastErrorText);
    return;
}

if (rest.ResponseStatusCode != 200) {
    Debug.WriteLine("Received error response code: " + Convert.ToString(rest.ResponseStatusCode));
    Debug.WriteLine("Response body:");
    Debug.WriteLine(sbJson.GetAsString());
    return;
}

Chilkat.JsonObject json = new Chilkat.JsonObject();
json.LoadSb(sbJson);

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

Debug.WriteLine("Example Completed.");