How to use Paypal API query parameters? It doesn't work - api

I'm trying to use Dispute API with Query Parameter.
.
As written in the following document
Query param - https://developer.paypal.com/api/rest/requests/
Dispute API - https://developer.paypal.com/docs/api/customer-disputes/v1/#disputes
.
So I tried url
https://api-m.paypal.com/v1/customer/disputes?page_size=10&page=2
But both page_size and page parameters doesn’t work

Related

Using a Wildcard in Postman API Call

I am trying to perform a GET API call in Postman.
One of the parameters in the query (a string) should include a wildcard, since I want to receive response which includes several optional values (for example "Demo1...", "Demo2...").
Any suggestion how this can be done?

What input is the API expecting?

I need to use this API : https://adresse.data.gouv.fr/api/
and i want to know how can i know the input is this API expecting.
The api you need to request to is
http://api-adresse.data.gouv.fr/search/
If you want to do a full text search you have to pass in a q request param in the url like
http://api-adresse.data.gouv.fr/search/?q=YOUR_TEXT
If you want to limit the response from the api call to 10 records, you can use limit param
http://api-adresse.data.gouv.fr/search/?q=YOUR_TEXT&limit=10
Go through the documents to see a complete list of input params that can be passed in the api call.
You can use Postman in order to run or test api.

scraping results not limited according to the passed parameters - kimonolabs

i've tried to add the parameters "kimoffset" and "kimlimit" to the source url of my api, but this doesn't limit and/or shift the scraped results
my api's source url:
http://www.tripadvisor.com/Hotels-g187791-Rome_Lazio-Hotels.html?kimlimit=10&kimoffset=100
are these parameter used for this?
why doesn't work?
the results in data preview area are always the same
For some reason the server is ignoring your query string kimlimit=10&kimoffset=100.

Is there a limit to start option in google custom api CSE list?

using google custom API, I have a problem when I try to get results of more than 100.
I got an error as shown below. The code I am using is below:
res = service.cse().list(
q='lectures',
cx='my custom search engine id',
num=10,
start=100,
).execute()
I want to extract several pages every day.I got this error.
HttpError 400 when requesting .. "Invalid Value">
if I make the start=90 or less it works!
From the documentation for the Google Custom Search API:
https://developers.google.com/custom-search/v1/using_rest
This role is not present if the current results are the last page.
Note: This API returns up to the first 100 results only.

Problem using paging in Buzz API?

I am using Buzz REST API to retrieve all the buzz public updates from 1-08-2011 to 28-082011 and my query term is 'lokpal'. I need to get all the updates that people did about this topic or any other activity with tag 'Anna Hazere'. I have prepared the URL that is:
REST GET URL
https://www.googleapis.com/buzz/v1/activities/search?key=AIzaSyD7O9D4uEFyEexRPtxaU1fCsh0yu5leum4&q=lokpal+date%3E2011-07-31+date%3C2011-08-28&alt=json&max-results=100&safe=medium
where %3E refers to '>' and %3C refers to '<' .
Can someone suggest me how to apply paging property to this and also retrieve all the updates that happened ion public stream. I am already able to get the activities in JSON format but want all the public updates.
Refer:http://code.google.com/apis/buzz/v1/using_rest.html
Within the body of the response is a links structure. One of the links is the next link, which is the URL for page 2. In your case, that would be:
https://www.googleapis.com/buzz/v1/activities/search?q=lokpal+date%3E2011-07-31+date%3C2011-08-28&alt=json&max-results=100&c=100