SoapSearchCriteria data structure

Element

Description

Type

Occurrences

condition

Conditions on which to base the search; accepts the following values:

  • Begins With
  • Contains
  • Ends With
  • Equals

string

1

field

Field of the User Details on which to apply the search condition; accepts the name of any Custom Field, or one of the following values:

  • Web Login
  • Mobile User
  • User ID
  • First Name
  • Last Name
string 1
value Value to search for within the specified field. string 1

Specification

<xs:complexType name="SoapSearchCriteria">
  <xs:sequence>
    <xs:element name="condition" nillable="true" type="xs:string"/>
    <xs:element name="field" nillable="true" type="xs:string"/>
    <xs:element name="value" nillable="true" type="xs:string"/>
  </xs:sequence>
</xs:complexType>
 

Example