Initiate download
documentedStart an asynchronous download (PDF, PNG, CSV, etc.) of a dashboard or tile.
POST /api/v1/dashboards/{dashboardId}/downloadDashboard downloadsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$instance}}.omniapp.co/api/v1/dashboards/{{$dashboardId}}/download" \
-X POST \
-H "Authorization: Bearer {{OMNIGROUP_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"format": "{{$format}}", "filename": "{{$filename}}", "paperFormat": "{{$paperFormat}}", "paperOrientation": "{{$paperOrientation}}", "queryIdentifierMapKey": "{{$queryIdentifierMapKey}}", "filterConfig": {{$filterConfig}}, "expandTablesToShowAllRows": {{$expandTablesToShowAllRows}}, "showFilters": {{$showFilters}}, "hideTitle": {{$hideTitle}}, "overrideRowLimit": {{$overrideRowLimit}}, "maxRowLimit": {{$maxRowLimit}}, "enableFormatting": {{$enableFormatting}}}'