Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions adaptors/dagu.md
Original file line number Diff line number Diff line change
@@ -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/).


37 changes: 37 additions & 0 deletions adaptors/et-mfr.md
Original file line number Diff line number Diff line change
@@ -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/).


37 changes: 37 additions & 0 deletions adaptors/ihris.md
Original file line number Diff line number Diff line change
@@ -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/).


37 changes: 37 additions & 0 deletions adaptors/openelis.md
Original file line number Diff line number Diff line change
@@ -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/).


Loading