I have sugarcrm instance and want to fetch some data from it using a raw php
I am using nusoap client. I am able fetch the data but want to select data of particular id only. what i am doing is
$response = $client->call('get_entry_list',array('session'=>$session_id , 'module_name'=>'itf_Apartments', 'where'=>'itf_Apartments.id=2', 'order_by'=>'','offset'=>'','select_fields'=>array('name')));
but iam not getting any results. is ther any problem with my code???