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 forsort
andstart
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 withlimit
andpageSize
options - HTTP namespace functions - Direct API access with
http.get()
,http.post()
,http.put()
, andhttp.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
});
View full documentation and examples →
What KoboToolbox workflows are you building? Share your use cases below!