Is there a way to extract Status Reports from Coverity via Rest API Call? - coverity

I want to extract status report from coverity using rest api calls for particular report name. Is there a way to extract the reports via api.
I tried multiple api calls and went through their api webservice documentation but did not find anything. Like:https:///doc/en/api/cov_platform_web_service_api_ref.html#Overview
api call: https://:/api/viewContents/projects/v1/All%20Projects?projectId=*
Columns enabled for All Projects.
All Project Column Settings
This is how We want to pull data via API call:
Status Report

Related

Trying to retrieve GitHub "Code Scanning" is enabled or not (GitHub API)

I am working on a GitHub automation using github APIs. As a part of this automation, I want to get the status of "Code Scanning".
https://api.github.com/repos/{Org}/{repo}/code-scanning/analyses
I have tried with above API endpoint but it's not giving me whether the code scanning is enabled or not. Its only retrieving the executions of code scanning. Therefore, if a user enabled the code scanning and then disabled it, then the above endpoint will retrieve result set for previous executions.
I checked the Graphql documentation as well, but I couldn't find any resource to retrieve this. Following is the field I want to retrieve using an API call.
GitHub code scanning field

Tableau API - Download Report - Unable to filter by month

We are trying to download PDF dashboard report from Tableau via API call. The API accepts all filters except month filter. We tried via Java client and Postman, in either case month filter is getting skipped. No errors are thrown and PDF report gets downloaded but always with latest month. We are using Tableau cloud for reporting. We can successfully download the report with month filtering from the Web UI. Any insight on what we could do to resolve this will be huge help.
Following is the spec we are using to create the URL
https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_filtering_and_sorting.htm#Filter-query-views
Following is the GET Request from our POSTMAN client
https://prod-.online.tableau.com/api/3.14/sites//views//pdf?maxAge=5&vf_Practice+Name=My+Healthcare+Center&vf_Month+of+Tx+Date=June
Screenshots are the configured filters for the report

Reset default filters for tableau view via rest api

I am using tableau rest api for view data to fetch data for views. There are some default filter values applied to the view filters and I am getting data filtered according to that. I want the complete data. How can I clear the filters via tableau rest api. I cannot use their javascript api.
There is no endpoint in the rest api that enables this functionality out-of-the-box. You may be able to download the workbook and script something that interrogates the raw xml (a twb/twbx file is simply xml) and updates the default filter(s). You can then re-package the workbook and push back to server, then fetch the data.
If you are restricted due to row-level security rules on the data source...the above will not work.

Is it Possible to Externally Pull an Archer Report vi API?

I have written some reports that contain data I'd like to programmatically access via API from an external system. I can't find any documentation or sample code to do so via any one of the 3 APIs. Has anyone used one of Archer's APIs to pull data from a report externally?
Unfortunately, you cannot pull reports via the REST API (yet), you'll have to use the Web Services API via the SearchRecordsbyReport method.

Is there a way to get paginated reports with OpenX API?

I am using OpenX API to integrate with an application. I am trying to fetch report data using /report/run route.
The doc says that JSON report_format is limited to 1000 rows. Is this paginated?
Or is there a way to get rest of the data or the only option si to go with CSV?
Here is the link to the docs.