Skip to main content

Filtering Records

Pass a Dictionary<string, string> of filters to SearchAsync to narrow down results. Filter keys follow the pattern EntityName_PropertyName. Multiple filters are combined with AND logic.

Filter by text field

Filter by email

Filter by enum

Pass the integer value of the enum member:

Filter by foreign key ID

Use dot-separated paths to filter on properties of related entities:

Combine multiple filters

All filters are ANDed together. You can also combine filtering with pagination:

Sorting results

In addition to filtering, you can control the sort order by passing orderBy and dir to SearchAsync:
If orderBy is not specified, the API uses the entity’s default sort property.

Filter key reference