Get Campaign Report's ID API and Filtered

Hi,

Just wanted to know if there is a way to Filter to pull all Active Campaign Report IDs

Cheers,

Adrien

Many of our collection endpoints provide query filters that allow you to filter the results based on certain fields. You can learn more about query filters here.

To get all active campaigns, you can filter on the status field.

GET https://{tenant}.api.identitynow.com/beta/campaigns?filters=status eq ‘ACTIVE’

If you have more than 250 active campaigns, you will also have to paginate to get the full result set.

Brilliant, will try it out on Monday!