I have been using the following code to retrieve agent email and phone numbers for a listing. For some reason over the past few days the query no longer returns results. is there a change in this process or is it possible my account has been limited in what data i can fetch
$search = $rets->searchQuery("Agent","Agent",("U_AgentID=XXXXXX)",array('Limit'=>1,'select'=>'*'));
if($rets->TotalRecordsFound() > 0) {
$agent = $rets->FetchRow($search);
var_dump($agent);
}