get https://{account}.piwik.pro/api/tag/v1//versions
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:
versions?filter[version_type][]=published,draft
This notation will not work here. You can achieve this functionality by providing multiple filters for the same parameter:
versions?filter[version_type][]=published&filter[version_type][]=draft