Queries
Search activities by status, type, patient and other criteria
We suggest reading the page on our domain model first to get an understanding of the activity model.
01
There are no required parameters for this query. However, you should provide pagination and sorting parameters. See Pagination and Sorting
below.
The filter is optional: if you don't provide one, an unfiltered list of pathways will be returned.
01
All in
filters accept a list of values and result in an is any of
search criteria. The eq
filter accepts a single string and results in is exact match
search criteria.
When specifying multiple filters, the resulting criteria is the conjuction of all filters.
01
Pagination and sorting are required for this query. If no pagination values are supplied, the API will return only the first 100 activities, or 100 activities from the specified offset. There is an upper limit of 100 records per query. Please be aware that setting count
greater than 100 will successfully execute but return only 100 records.
Default sorting is based on the date
field, in descending order (i.e. newest to oldest).
01