This repository was archived by the owner on Oct 12, 2021. It is now read-only.
  
  
  - 
                Notifications
    You must be signed in to change notification settings 
- Fork 11
Delete Module
        mattkol edited this page Jan 21, 2017 
        ·
        2 revisions
      
    This sample usage shows how to delete "Bugs" module entity data. For more request options make changes to the [Options parameter](Request Options).
This implements the set_entry SugarCRM REST API method.
package com.sugaronrest.tests;
import com.sugaronrest.*;
import com.sugaronrest.modules.Bugs;
String url = "http://demo.suiteondemand.com/service/v4_1/rest.php";
String username = "will";
String password = "will";
SugarRestClient client = new SugarRestClient(url, username, password);
SugarRestRequest request = new SugarRestRequest("Bugs", RequestType.Delete);
String bugId = "2e1cbd26-a8ed-755b-23f1-5883cc4de3ae";
request.setParameter(bugId);
SugarRestResponse response = client.execute(request);String deletedBugId = (String)response.getData();"2e1cbd26-a8ed-755b-23f1-5883cc4de3ae"{
  "method": "set_entry",
  "input_type": "json",
  "response_type": "json",
  "rest_data": {
    "session": "sneh9ve4o0fdoup5ui8fe192c1",
    "module_name": "Bugs",
    "name_value_list": {
      "name": {
        "name": "deleted",
        "value": 1
      },
      "id": {
        "name": "id",
        "value": "2e1cbd26-a8ed-755b-23f1-5883cc4de3ae"
      }
    }
  }
}{
  "id": "2e1cbd26-a8ed-755b-23f1-5883cc4de3ae",
  "entry_list": {
    "deleted": {
      "name": "deleted",
      "value": 1
    },
    "id": {
      "name": "id",
      "value": "2e1cbd26-a8ed-755b-23f1-5883cc4de3ae"
    }
  }
}SugarOnRest
- Home
- Request
- Request Types
- Request Options
- Response
- Error Response
- Read Module By Id
- Read Module Collection By Page
- Read Module Collection
- Create Module
- Create Module Collection
- Update Module
- Update Module Collection
- Delete Module
- Linked Modules 1
- Linked Modules 2
- Linked Modules 3
- Query Options 1
- Query Options 2
- Query Options 3