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

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.

Related

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

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

How can i get number of Sharepoint Pages or documents viewers using HTTP request through Power Automate?

How can i get number of Sharepoint Pages or documents viewers using HTTP request through Power Automate?
I can't seem to find a way or answer on how send an HTTP request to SharePoint using power automate to get the site usage
You could look into using the Graph API in Power Automate. There are SharePoint site usage methods available in the Graph API.
Probably these two methods are good to start with:
reportRoot: getSharePointSiteUsagePages
reportRoot: getSharePointSiteUsageDetail

SharePoint Rest API across subsites

I am trying to make a single rest api call from a top level site to get results from multiple picture libraries on multiple subsites. Is this possible and if not, what is the best way of approaching this.
I do have a rest api call to retrieve all subsites but I need to retrive results from libraries on a single request.
https://xxxx/_api/web/webs/?$select=title,ServerRelativeUrl"
Unfortunately it is not possible to query multiple lists using a single SharePoint REST API call, as to fetch data from a list you have to specify its parent web and title/ID. Usually for these kinds of queries the best choice is to utilize SharePoint Search REST API (Reference) or, if you can utilize some server side code, you can use the SPSiteDataQuery class to make fetch data from across whole sites or site collections (have a look at this article about SPSiteDataQuery).
Also, have a look at this SO question: Fetch data from multiple list sharepoint REST API in one Ajax call

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.

How to get around salesforce API limit

I am building a chrome extension/third-party app that needs to read data from salesforce.
One way is to make a API call directly to salesforce whenever a user needs to query something, but this will create a large number of API calls.
What I attempted to do is to pull a ton of data from salesforce into a Google Sheet using the reports API, on an hourly basis, then query the data through Google App Script. But Salesforce's 2000 row limits for Reports and SOQL API, as well as the runtime limits posed by Google App Script, make my life difficult :(
What are the best ways to get data from salesforce for third party extensions?
Appreciate your help!
The bulk API can fulfill your needs as it hasn't a limitation on the number of returned rows.