Sample code for 30+ languages & platforms
Dart Requires Chilkat v11.0.0+

SugarCRM Deleting a Record

See more SugarCRM Examples

Deletes a record from the Sugar instance using the //:record endpoint, by using the DELETE Http Method.

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 DELETE -H OAuth-Token:<access_token> -H Cache-Control:no-cache http://<site_url>/rest/v10/Accounts/<record_id>

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

  final resp = CkHttpResponse();
  try {
    http.httpNoBody('DELETE', 'http://<site_url>/rest/v10/Accounts/<record_id>', resp);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

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

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

  final respStatusCode = resp.statusCode;
  print('Response Status Code = $respStatusCode');
  if (respStatusCode >= 400) {
    print('Response Header:');
    print(resp.header);
    print('Failed.');
    return;
  }

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

  // {
  //   "id": "ab2222df-73da-0e92-6887-5705428f4d68"
  // }

  // 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 id = jResp.stringOf('id');
}