🎉 KoboToolbox Adaptor v4.1.0 is Here!

We’re excited to announce the release of the KoboToolbox adaptor v4.1.0 for OpenFn!

What’s New in v4.1.0

  • Enhanced getSubmissions() - Added support for sort and start options for better pagination control

Previous Major Updates (v4.0.0)

The adaptor received major improvements in v4.0.0:

  • Automatic pagination - getSubmissions() now downloads all submissions automatically (up to 30,000 records by default)
  • Simplified pagination - Replaced paginate option with limit and pageSize options
  • HTTP namespace functions - Direct API access with http.get(), http.post(), http.put(), and http.request()

Example:

// Get all submissions (no limit)
getSubmissions('your-form-id', { 
  limit: Infinity,
  sort: { _submission_time: -1 }
});

// Get submissions with pagination
getSubmissions('your-form-id', { 
  limit: 500,
  pageSize: 100,
  start: 10
});

:open_book: View full documentation and examples →

What KoboToolbox workflows are you building? Share your use cases below! :backhand_index_pointing_down: