get https://{account}.piwik.pro/api/tag/v1//triggers
JSON API compatibility divergence
Filters
In JSON API standard (https://jsonapi.org/recommendations/#filtering) one can request elements with multiple
filter values by simply providing them separated by coma:
triggers?filter[trigger_type]=click,event
This notation will not work here. You can achieve this functionality by providing multiple filters for the same parameter:
triggers?filter[trigger_type][]=click&filter[trigger_type][]=event