get https://campaign-api.omni.chat/v1/campaigns/search
Search for campaigns by paging the dataset, taking the limit
, next
, status
, name
, audience.type
, createdAt
as query parameters.
The filter type can be specified using brackets []
directly after the name of the query parameter. It can take one of the following values:
- eq: equal. (default)
- not_eq: not equal.
- like: contains.
- not_like: not contains.
- gt: greater than.
- gte: greater than or equal.
- lt: less than.
- lte: less than or equal.
- in: in list.
- not_in: not in list.
Ex:status[in] = CREATED,INPROGRESS
Note: _The values must be separated by commas to 'in' filter type.