Reconcillations reports API

RapidoReach Publisher API Guide

Reconcialation Report API

Method: GET

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

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