Reconcillations reports API
RapidoReach Publisher API Guide
Reconcialation Report API
Method: GET
xxxxxxxxxx
1
URL: http://www.rapidoreach.com/api/v1/reconciliations/{{publisher_id}}/{{app_id}}?key={{app_api_key}}&limit=3&skip=2
Params
publisher_id: Publisher User id
app_id: App id
Query
app_api_key
: API Key generated for an app. It can be found on publisher portal
limit
: it is a number of records to fetch in one query request. It is limited to maximum 500 records for performance reasons
skip
: Number of records to be skipped.
For example there are total 350 records are available. You can then fetch it as follows
xxxxxxxxxx
1
set skip = 0 and limit = 100 -> it will show first 100 records
2
set skip = 100 and limit 100 -> to get another set of 100 records
3
set skip = 200 and limit 100 -> to get another set of 100 records
4
set skip = 300 and limit 100 -> to get another set of 50 records
At this point records retrieved (50) are less than requested (limit = 100) hence there are no more records are available to fetch
Records the total number of records retrived it skip (300) + final call records (50) = 350 in total
Store this number in your system
Next time start from this number and retrieve from 350 ie skip = 350
set skip = 350 and limit 100 and so on
No Comments