Skip to main content

OpenSSP Adaptor

About OpenSSP

OpenSPP (Open Smart Patient Platform) is an open-source platform designed to support patient-centric workflows in healthcare delivery. It enables healthcare providers to manage patient data, schedule appointments, track health outcomes, and improve service delivery through real-time data insights and integration capabilities.

Integration Options

OpenSPP supports 2 primary integration options with OpenFn:

  1. Rest API: OpenSPP has a REST API that enables external services like OpenFn to pull data from OpenSPP, or push data from external apps to OpenSPP. This option is suited for scheduled, bulk syncs or workflows that must update data in OpenSPP with external information. See functions for more on how to use this adaptor to work with the API.

  2. Webhook: Webhook or Data Forwarding to push data from OpenSPP to external systems (see docs). This option is suited for real-time, event-based data integration.

Authentication

  1. See OpenSPP docs for the latest on supported authentication methods.
  2. When integrating with OpenSPP via OpenFn, there is one primary authentication method that is supported: Basic Authentication. See this adaptor's Configuration docs for more on the required authentication parameters.

See platform docs on managing credentials for how to configure a credential in OpenFn. If working locally or if using a Raw JSON credential type, then your configuration will look something like this:

{
"password": "@some(!)Str0ngp4ss0w0rd",
"username": "test@openfn.org",
"database": "devel",
"baseUrl": "https://dev.newlogic-demo.com"
}
  1. OpenSPP Documentation
  2. API Reference
  3. Integration Guide

Implementation Examples

Coming soon!