Searching

Search Fieldsanchor

We support three types of search fields:

  • Text fields
  • Multiple value fields
  • Range fields

Learn more about working with search results.

Text fieldsanchor

Text Fields can be searched using 5 operators: Is, IsNot, StartsWith, EndsWith, and Contains. Each search Text Field can't exceed 255 characters. Here is an example searching for customer email on a transaction.

  1. C#
var searchRequest = new TransactionSearchRequest().
    CustomerEmail.Is("john.smith@example.com");

var searchRequest = new TransactionSearchRequest().
    CustomerEmail.IsNot("john.smith@example.com");

var searchRequest = new TransactionSearchRequest().
    CustomerEmail.StartsWith("john.smith");

var searchRequest = new TransactionSearchRequest().
    CustomerEmail.EndsWith("example.com");

var searchRequest = new TransactionSearchRequest().
    CustomerEmail.Contains("smith");

Multiple value fieldsanchor

Search fields that accept multiple values support two operators: Is and IncludedIn.

  1. C#
var searchRequest = new TransactionSearchRequest()
  .Status.Is(TransactionStatus.AUTHORIZED);

var searchRequest = new TransactionSearchRequest()
  .Status.IncludedIn(TransactionStatus.AUTHORIZED,
    TransactionStatus.SUBMITTED_FOR_SETTLEMENT);

Range fieldsanchor

Ranges support four operators: Is, Between, GreaterThanOrEqualTo, and LessThanOrEqualTo. Between is inclusive.

  1. C#
var searchRequest = new TransactionSearchRequest().
    Amount.Is(15.00M);

var searchRequest = new TransactionSearchRequest().
    Amount.GreaterThanOrEqualTo(10.00M);

var searchRequest = new TransactionSearchRequest().
    Amount.LessThanOrEqualTo(20.00M);

var searchRequest = new TransactionSearchRequest().
    Amount.Between(10.00M, 20.00M);
note

Ranges with a date/time value are precise to the minute; the results of search for transactions created between 12/17/2015 17:00 and 12/17/2015 17:00 will include a transaction created at 12/17/2015 17:00:59.