Querying Issue lists via CSVΒΆ
As the issues are treated like tabular data by the Issue Lists API API entry point,
issue query results can also be retrieved in CSV format. The CSV cells
will be quoted using double quotes (") and the columns separated
using semicolons (;).
Retrieving issues via CSV functionality is also being used when
exporting CSV from the Webinterface by clicking the Export button.
If you want to automatize this you might not need an actual
programming language in order to use the Dashboard JSON API but you
could also achieve the result by using a command-line tool like wget
or curl:
wget example:
wget -O download.csv --user <username> --password <password> --header "X-Axivion-User-Agent: ApiClient" --header "Accept: text/csv" "http://localhost:9090/axivion/projects/<projectname>/issues/?kind=SV"
curl example:
curl -H "Project-ID: <dbToken>" "http://localhost:9090/axivion/projects/<projectname>/issues/?kind=SV&format=csv"