diff --git a/adaptors/dagu.md b/adaptors/dagu.md new file mode 100644 index 00000000000..bb5c6c2349a --- /dev/null +++ b/adaptors/dagu.md @@ -0,0 +1,37 @@ +--- +title: Dagu Adaptor +--- + +## About Dagu +Dagu is a pharmaceutical inventory management system. On top of storing inventory items it also stores patient, provider and prescription data. + +## Integration Options +Dagu has an available REST API. See [functions](/adaptors/packages/dagu-docs) for more on how to use this adaptor to work with the API. + +## Authentication +Users must specify a `baseUrl`, `username` and `password` to generate an `access_token`, which is then sent as `Bearer token` as part of the headers in every HTTP request. + +OpenFn users can use the `Dagu` credential type when +[creating a credential](/documentation/manage-projects/manage-credentials). + +See the adaptor's [configuration schema docs](/adaptors/packages/dagu-configuration-schema) + +If working locally or +if using a `Raw JSON` credential type, then your configuration will look +something like this: + +```json +{ + "baseUrl": "https://example.dagu.com", + "username": "admin", + "password": "password" +} +``` + +### I've noticed a problem with this Adaptor, or something is out of date, what can I do? + +Thanks for asking! We are a fully Open Source Digital Public Good, and we welcome contributions from our community. Check out our [Adaptors Wiki](https://github.com/OpenFn/adaptors/blob/main/wiki/index.md) for more information on how you can update Adaptors! + +Or, you can always reach out to the Community through our [Community Forum here](https://community.openfn.org/). + + diff --git a/adaptors/et-mfr.md b/adaptors/et-mfr.md new file mode 100644 index 00000000000..659a5bbeac0 --- /dev/null +++ b/adaptors/et-mfr.md @@ -0,0 +1,37 @@ +--- +title: ET-MFR Adaptor +--- + +## About ET-MFR +ET-MFR stands for Ethiopia Master Facility Registry. It is the national registry of all health facilities in Ethiopia, maintained by the MOH. It stores facility metadata including names, codes, geographic location and facility type. + +## Integration Options +ET-MFR has an available REST API. See [functions](/adaptors/packages/et-mfr-docs) for more on how to use this adaptor to work with the API. + +## Authentication +Users may specify a `baseUrl`, `username` and `password`. The `username` and `password` are then encoded into a basic authentication header and sent as part of every HTTP request. + +OpenFn users can use the `iHRIS` credential type when +[creating a credential](/documentation/manage-projects/manage-credentials). + +See the adaptor's [configuration schema docs](/adaptors/packages/et-mfr-configuration-schema) + +If working locally or +if using a `Raw JSON` credential type, then your configuration will look +something like this: + +```json +{ + "baseUrl": "https://example.et-mfr.com", + "username": "admin", + "password": "password" +} +``` + +### I've noticed a problem with this Adaptor, or something is out of date, what can I do? + +Thanks for asking! We are a fully Open Source Digital Public Good, and we welcome contributions from our community. Check out our [Adaptors Wiki](https://github.com/OpenFn/adaptors/blob/main/wiki/index.md) for more information on how you can update Adaptors! + +Or, you can always reach out to the Community through our [Community Forum here](https://community.openfn.org/). + + diff --git a/adaptors/ihris.md b/adaptors/ihris.md new file mode 100644 index 00000000000..bee2b504467 --- /dev/null +++ b/adaptors/ihris.md @@ -0,0 +1,37 @@ +--- +title: iHRIS Adaptor +--- + +## About iHRIS +iHRIS stands for Integrated Human Resource Information System. It is the national human resource system for health workforce management. + +## Integration Options +iHRIS has an available REST API. See [functions](/adaptors/packages/ihris-docs) for more on how to use this adaptor to work with the API. + +## Authentication +Users must specify a `baseUrl`, `username` and `password` to login and get a `cookie` back. The cookie is then included as part of the headers in every HTTP request. + +OpenFn users can use the `iHRIS` credential type when +[creating a credential](/documentation/manage-projects/manage-credentials). + +See the adaptor's [configuration schema docs](/adaptors/packages/ihris-configuration-schema) + +If working locally or +if using a `Raw JSON` credential type, then your configuration will look +something like this: + +```json +{ + "baseUrl": "https://ihris.example.com", + "username": "ihris_user", + "password": "@some(!)Str0ngp4ss0w0rd" +} +``` + +### I've noticed a problem with this Adaptor, or something is out of date, what can I do? + +Thanks for asking! We are a fully Open Source Digital Public Good, and we welcome contributions from our community. Check out our [Adaptors Wiki](https://github.com/OpenFn/adaptors/blob/main/wiki/index.md) for more information on how you can update Adaptors! + +Or, you can always reach out to the Community through our [Community Forum here](https://community.openfn.org/). + + diff --git a/adaptors/openelis.md b/adaptors/openelis.md new file mode 100644 index 00000000000..67a55c2f559 --- /dev/null +++ b/adaptors/openelis.md @@ -0,0 +1,37 @@ +--- +title: OpenELIS Adaptor +--- + +## About OpenELIS +OpenELIS stands for Open-source Laboratory Information System. It is an open-source laboratory information system (LIS) used widely in public health settings. + +## Integration Options +OpenELIS has an available REST API. See [functions](/adaptors/packages/openelis-docs) for more on how to use this adaptor to work with the API. + +## Authentication +Users must specify a `baseUrl`, `username` and `password`. The `username` and `password` are then encoded into a basic authentication header and sent as part of every HTTP request. + +OpenFn users can use the `OpenELIS` credential type when +[creating a credential](/documentation/manage-projects/manage-credentials). + +See the adaptor's [configuration schema docs](/adaptors/packages/openelis-configuration-schema) + +If working locally or +if using a `Raw JSON` credential type, then your configuration will look +something like this: + +```json +{ + "baseUrl": "https://example.openelis.com", + "username": "admin", + "password": "password" +} +``` + +### I've noticed a problem with this Adaptor, or something is out of date, what can I do? + +Thanks for asking! We are a fully Open Source Digital Public Good, and we welcome contributions from our community. Check out our [Adaptors Wiki](https://github.com/OpenFn/adaptors/blob/main/wiki/index.md) for more information on how you can update Adaptors! + +Or, you can always reach out to the Community through our [Community Forum here](https://community.openfn.org/). + +