API: Does Jotform Support Pagination and Bulk processing?

  • Sanjay Kanth A
    Asked on June 19, 2024 at 4:09 AM

    Hi, we are working with jotform APIs. We like to know that jotform supports Pagination and batch or bulk process if so can you please share the example request and response to API

  • Lara JotForm Support
    Replied on June 19, 2024 at 4:48 AM

    Hello Sanjay,

    Thanks for reaching out to Jotform support. Yes, the Jotform API supports pagination and batch processing. By default, each API call returns 20 submissions at a time. This helps prevent the server from getting overwhelmed by too many requests.

    To get submissions for a form with pagination, you can use the offset and limit parameters. For example, if you want to retrieve 10 submissions starting from the 21st one, you can modify your API call like this:

    GET https://api.jotform.com/form/{formID}/submissions?apiKey={apiKey}&limit=10&offset=20

    For batch or bulk processing, you can delete or update multiple items by iterating through them and making requests for each one. An example API call to delete multiple submissions would look like this:

    DELETE https://api.jotform.com/submissions/{submissionID1},{submissionID2}?apiKey={apiKey}

    For more details and examples, you may check out Jotform API.

    If that’s not exactly what you’re looking for, can you explain a bit more, so I can help you better?

    Let us know if you have any other questions.

 
Your Answer