🚀 New OpenELIS Adaptor Released

Dear community,

We have released the new OpenELIS adaptor. OpenELIS is an open-source laboratory information system (LIS) used widely in public health settings. Fetch lab orders, post results, and manage patient records with this new adaptor.

Read the full details here.


:wrench: Features

1. Get orders in progress

http.get('home-dashboard/ORDERS_IN_PROGRESS');

2. Add results to a lab order

http.post('LogbookResults', {
  accessionNumber: 'DEV01260000000000003',
  currentDate: '09/02/2026',
  testResult: [{ id: '0' }],
  // ...more details
});

3. Update patient information

http.request('POST', 'PatientManagement', {
  patientUpdateStatus: 'UPDATE',
  nationalId: '1234567892',
  firstName: 'Aleksa',
  lastName: 'Lazic',
  gender: 'F',
  // ...more details
});

:puzzle_piece: Example Workflow


:white_check_mark: Try It Out

Explore the adaptor now at app.openfn.org.

Happy automating!

— The OpenFn Team

1 Like