Latest Activity
https://developers.miro.com/reference/enterprise-get-organization-members limit int32 Limit for the number of organization members returned in the result list. ==> OK cursor string The ID of the organization member used as the reference for pagi...
I have a JSON HTTP datasource that returns data that looks like this: { "pagination": { "pageNumber": "3", "pageSize": "100", "totalAvailable": "251" }, "datasources": { "datasource": [ {"name": ...
I have a working API call that returns the first set of data without error (up to first 5000 records). However, when I try to set up pagination using a value in the end of the results it spins indefinitely. The token to use is called "cursor" at th...
We are connecting to API via a GATEWAY where our request is passed though based on the URI. Example 1) We have a API https://abc.com/api/v1.1/ 2) We need to call the API via a gateway, So Denodo will call http://gateway.com/abc/api/v1.1/query/pagesiz...
We have a third party REST API that we plan to connect from Denodo. The API supports pagination in the following way: The request header specifies start and end index. Request Header: Range: items=1-200 The response header specifies the current posit...
If we have a schenario where results from two paginated APIs are to be JOINED. e.g. We have 1 million customers, and an API that returns 100 at a time. And another API that reutrn All Customer Orders, again 100 at a time, with no guarantee about what p...
I have the following URL that is return JSON format for one of my views: http://mycompany:9090/denodo-restfulws/hcc_dv/views/mytestview/?$format=JSON However, it only returns the first 25 rows. I have tried every conceivable varitation to get all 150 ...
Here is the format of data : { "name": "mytable", "elements": [ { "name": Den, "number": null, "date": "2020-06-12", "designation": null }, ...........1000 rows exist ] "links": [ { "rel": "next", "title": "Next interval", "href": "?$start_index=...
Hello, Below is the Scenario, Please suggest I have extrenal API that gives me limit of 1000 records at a time. The data that I receive contains link for next page(a half link ex:) Full link is like : https:/exmaple.com/sgvu/myapi/query?Select n...
Hello, I have 12 number of pages with my API with limit of 1000 and offset of 1000. Now If I obtain a single page of data it consists of 1000 rows of data and I cannot increase the limit to even 2000 becuase of source that provides only 1k data at a ...