Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..

cancel
Showing results for 
Search instead for 
Did you mean: 

Archer Search API

Ajeet
Contributor III

Hi, Is there any Archer search API  which gives response on the basis of field value ?

example : Assigned to value is "Username" can i search using "Username" with Archer API? if no then is there any workaround to achieve this?

1 ACCEPTED SOLUTION

Accepted Solutions

DavidPetty
Archer Employee
Archer Employee

@Ajeet you can use the Web Services API to do a search, Search Class (archerirm.cloud)

 Advisory Consultant

View solution in original post

2 REPLIES 2

DavidPetty
Archer Employee
Archer Employee

@Ajeet you can use the Web Services API to do a search, Search Class (archerirm.cloud)

 Advisory Consultant

anandswaroop
Archer Employee
Archer Employee
@Ajeet , You can use ExecuteSearch API of SOAP ExecuteSearch (archerirm.cloud)
Search Criteria in ExecuteSearch API : Search Criteria (archerirm.cloud)
 
Below are two sample requests criteria's to use, explore more in the above search criteria link shared
1. 
<Filter>
<Conditions>
<TextFilterCondition>
<Operator>Contains</Operator>
<Field>5555</Field>
<Value>sample-value-to-search-for</Value>
</TextFilterCondition>
</Conditions>
</Filter>
2. 
<Filter>
<Conditions>
<TextFilterCondition>
<Operator>Contains</Operator>
<Field>9999</Field>
<Value>your value</Value>
</TextFilterCondition>
<TextFilterCondition>
<Operator>Contains</Operator>
<Field>8888</Field>
<Value>your value</Value>
</TextFilterCondition>
</Conditions>
<OperatorLogic>1 OR 2</OperatorLogic>
</Filter>