About Rest API - How to get data with some sort of filter, query parameter, etc

Hello,

I am looking into how to get submission data as chunked result from our application server through Rest API.

I believe I can get ALL submission data for a form on “https://kc.humanitarianresponse.info/api/v1/data/{formId}”.

But there will be a problem when a form has big amount of submission data since this endpoint seems returning all submission data.

So I was looking for a way to filter the result like getting paginated result or using date filter, but I could not find any information nor documentaion about them.

If anyone can provide any reference or advice would be appreciated.

1 Like

Hi Iso_Ryo

Check here:

You can query by submission data using ?query={ “field”: “value” } parameter

And you can also implement pagination using ?skip & ?limit query parameters.

1 Like

See also: