πŸ₯‚Using REST API [Depricated]

Get the imported spreadsheet data using REST API, whenever you want!

It's possible to get imported data via rest api. It is a convenient option when instead of Impler pushing data to your app, you want to pull the data.

To get the data (valid/invalid), you need uploadId that you can get when the user starts, terminate or complete the import, which you can refer at React Embed

Following are the URLs to receive imported data,

Get valid uploaded data

GET https://api.impler.io/v1/upload/{uploadId}/rows/valid

Path Parameters

Query Parameters

{
  "page": 0,
  "data": [
    {}
  ],
  "limit": 0,
  "totalPages": 0,
  "totalRecords": 0
}

Get invalid uploaded data

GET https://api.impler.io/v1/upload/{uploadId}/rows/invalid

Path Parameters

Query Parameters

{
  "page": 0,
  "data": [
    {}
  ],
  "limit": 0,
  "totalPages": 0,
  "totalRecords": 0
}

Further, you can fetch the list of uploads using the following API,

Get list of uploads for imported files for template

GET https://api.impler.io/v1/upload/{template}

Path Parameters

{
    // Response
}

Last updated