How to Change in Where Clause / Qurey in Rest API

Hi

How to Change in Where Clause / Qurey in Rest API

http://support.sugarcrm.com/Documentation/Sugar_Developer/Sugar_Developer_Guide_7.5/API/Web_Services/Legacy_REST/SOAP_AP…

Like email extist in Lead module

//The SQL WHERE clause without the word "where".

         'query' => "email1 LIKE mehul@gmail.com",

Tevfik Tümer Matt Marum

Parents Reply Children
  • Hi Mehul,

    I think you are looking something like this;

    $url = $base_url . "/Leads";
    
    // $date_start = date('c');
    $params = array(
        "filters" => array(
          'email1' => array(
            '$contains' => array(
              'mehul@gmail.com'
            )
          )
        )
    );
    
    $records = call($url, $oauth2_token_response->access_token, 'GET', $params);
    

    Hope this helps.

    Best Regards

    Tevfik Tümer

    Developer Support Engineer