ISSUE_PERSON_SEARCH | ISSUE Endpoint | |
/rpc/issue/?method=ISSUE_PERSON_SEARCH | ||
For information on how to use Advanced Searches, click here |
DETAILS | |||
Prefix | IssuePerson |
SUB SEARCHES | |||
ContactBusiness | CONTACT_BUSINESS_SEARCH | ||
ContactPerson | CONTACT_PERSON_SEARCH | ||
Issue | ISSUE_SEARCH |
AVAILABLE FIELDS | TYPE | ||
ContactBusiness | Numeric | ||
ContactBusinessText | Text | ||
ContactPerson | Numeric | ||
ContactPersonText | Text | ||
Id | Numeric | ||
Issue | Numeric | ||
IssueText | Text | ||
Notes | Text | ||
Role | Numeric | 1=Owner[Default],2=Person Responsible,3=Information Only,5=Caused Issue | |
RoleText | 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);}); |