Sample code for 30+ languages & platforms
Dart

MedTunnel: Logout

See more MedTunnel Examples

Close the session for the logged in User.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  // This example assumes the Chilkat API to have been previously unlocked.
  // See Global Unlock Sample for sample code.

  final http = CkHttp();

  // Implements the following CURL command:

  // curl -X GET -k 
  //         -H "Authorization:PutAuthorizationTokenHere" 
  //         https://server.medtunnel.com/MedTunnelSvc/api/Authenticate/Logout

  // Use the following online tool to generate HTTP code from a CURL command
  // Convert a cURL Command to HTTP Source Code

  http.setRequestHeader('Authorization', 'PutAuthorizationTokenHere');

  final sbResponseBody = CkStringBuilder();
  try {
    http.quickGetSb('https://server.medtunnel.com/MedTunnelSvc/api/Authenticate/Logout', sbResponseBody);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  final jResp = CkJsonObject();
  jResp.loadSb(sbResponseBody);
  jResp.emitCompact = false;

  print('Response Body:');
  print(jResp.emit());

  final respStatusCode = http.lastStatus;
  print('Response Status Code = $respStatusCode');
  if (respStatusCode >= 400) {
    print('Response Header:');
    print(http.lastHeader);
    print('Failed.');
    return;
  }

  // Sample JSON response:
  // (Sample code for parsing the JSON response is shown below)

  // {
  //   "ReturnCode": 1,
  //   "ReturnCodeText": "Success",
  //   "Data": "1"
  // }

  // Sample code for parsing the JSON response...
  // Use the following online tool to generate parsing code from sample JSON:
  // Generate Parsing Code from JSON

  final returnCode = jResp.intOf('ReturnCode');
  final returnCodeText = jResp.stringOf('ReturnCodeText');
  final data = jResp.stringOf('Data');
}