ISSUE_SEARCH ISSUE Endpoint
  /rpc/issue/?method=ISSUE_SEARCH  
  For information on how to use Advanced Searches, click here  
  DETAILS    
  Prefix Issue  
  SUB SEARCHES    
  ContactBusiness CONTACT_BUSINESS_SEARCH  
  ContactPerson CONTACT_PERSON_SEARCH  
  AVAILABLE FIELDS TYPE  
  CauseCount Numeric  
  CauseDescription Text  
  CauseType Numeric Id of the Cause Type. The valid values are defined seperately for each space via SETUP_ISSUE_CAUSE_TYPE_MANAGE
  CauseTypeText Text See above
  CauseType2 Numeric Id of the Cause Type2. The valid values are defined seperately for each space via SETUP_ISSUE_CAUSE_TYPE_2_MANAGE
  CauseType2Text Text See above
  ClaimActualAmount Numeric Actual amount from related Claim
  ClaimAmountEstimate Numeric Estimated amount from related Claim
  CompletedDate Date  
  FirstCausedByPerson Numeric  
  FirstCausedByPersonText Text  
  Id Numeric  
  IssueType Numeric Id of the Issue Type. The valid values are defined seperately for each business via SETUP_ISSUE_TYPE_MANAGE
  IssueTypeText Text See above
  LastEscalatedDate Date  
  Notifiable Text Y/N
  ObjectContext Numeric Id of object the issue is linked to.
  ObjectReference Title Click here for more information
  ObjectTitle Title Click here for more information
  Object Numeric Type of object the issue is linked to. Click here to see all values
  ObjectText Text See above
  OtherObjectContext Numeric Id of the second / other object the issue is linked to.
  OtherObject Numeric Type of second / other object the issue is linked to. Click here to see all values
  OtherObjectText Text See above
  Private Text Y/N
  RaisedDate Date Date issue was raised
  Reference Text  
  ReportedBy Numeric Id of the ReportedBy. You can define your own via SETUP_ISSUE_REPORTED_BY_MANAGE, in addition to the standard ones of 1=Internal,2=Customer,3=Third Party
  ReportedByText Text See above
  ResponsibleContactPerson Numeric  
  ResponsibleContactPersonText Text  
  Risklevel Numeric Id of the Risklevel. The valid values are defined seperately for each space via SETUP_ISSUE_RISK_LEVEL_MANAGE
  RisklevelText Text See above
  Severity Numeric Id of the severity. 1=Critical,2=High,3=Medium,4=Low
  SeverityText Text See above
  Source Numeric Id of the Source. The valid values are defined seperately for each space via SETUP_ISSUE_SOURCE_MANAGE
  SourceText Text See above
  Status Numeric Id of the Status. 1=Not Started,2=In Progress,3=Completed,4=Archived
  StatusText Text See above
  Target Date  
  Title Text  
       
  Audit Fields   Click here for more information
  RETURN  
  Selected Fields  
  EXAMPLE
  1. Return all issues
  var oAdvancedSearch = new AdvancedSearch();
oAdvancedSearch.endPoint = 'issue';
oAdvancedSearch.method = 'ISSUE_SEARCH';
oAdvancedSearch.addField('reference,title,severity');
oAdvancedSearch.sort('reference', 'desc');

oAdvancedSearch.getResults(function(asData) { SearchComplete(asData);});
Help!