Advanced query operations
The REST web API supports a number of advanced querying commands:
https://testapi.imis.com/sdkdemo/api/datacontract?PropertyName=Operation:value
- Between, between
- Contains, contains
- EndsWith, endsWith
- Equal, eq,==
- GreaterThan, gt,>
- GreaterThanOrEqual, ge,>=
- In, in
- IsEmpty, isEmpty,empty
- IsFalse, isFalse,false
- IsTrue, isTrue,true
- LessThan, lt,<
- LessThanOrEqual, le,<=
- NotContain, notContain,!contain
- NotEmpty, notEmpty,!empty
- NotEqual, ne,!=
- StartsWith, startsWith
- OrderBy, orderby, OrderBy=[PropertyName]:Descending
Find all parties where (example)
GET https://testapi.imis.com/sdkdemo/api/party?firstname=startsWith:Jon
GET https://testapi.imis.com/sdkdemo/api/party?firstname=startsWith:jon&lastname=startsWith:Smith
Updated over 5 years ago