From b4a43c475dc22ed4f6baa7e61090a654be9df537 Mon Sep 17 00:00:00 2001 From: Joe Clark Date: Mon, 27 Oct 2025 15:31:13 +0000 Subject: [PATCH 1/8] purge staes cache --- packages/engine-multi/{ava => memtest.js} | 0 packages/engine-multi/src/engine.ts | 1 + packages/engine-multi/test/memtest.ts | 32 +++++++++++++++++------ 3 files changed, 25 insertions(+), 8 deletions(-) rename packages/engine-multi/{ava => memtest.js} (100%) diff --git a/packages/engine-multi/ava b/packages/engine-multi/memtest.js similarity index 100% rename from packages/engine-multi/ava rename to packages/engine-multi/memtest.js diff --git a/packages/engine-multi/src/engine.ts b/packages/engine-multi/src/engine.ts index bb1884925..0de461f7f 100644 --- a/packages/engine-multi/src/engine.ts +++ b/packages/engine-multi/src/engine.ts @@ -200,6 +200,7 @@ const createEngine = async ( // @ts-ignore execute(context).finally(() => { delete contexts[workflowId]; + delete states[workflowId]; context.removeAllListeners(); }); diff --git a/packages/engine-multi/test/memtest.ts b/packages/engine-multi/test/memtest.ts index 768088351..ba8c90de2 100644 --- a/packages/engine-multi/test/memtest.ts +++ b/packages/engine-multi/test/memtest.ts @@ -1,7 +1,7 @@ // run this file with limited memory // --max-old-space-size=50 or whatever // NODE_OPTIONS="--max-old-space-size=50" - +import { getHeapStatistics } from 'node:v8'; import { createMockLogger } from '@openfn/logger'; import { randomUUID } from 'node:crypto'; import createAPI from '../src/api'; @@ -11,10 +11,16 @@ const logger = createMockLogger(); let api: any; +function heap(reason) { + const { used_heap_size } = getHeapStatistics(); + const mb = used_heap_size / 1024 / 1024; + console.log(`>> [${reason}] Used heap at ${mb.toFixed(2)}mb`); +} + function run() { const job = ` export default [(state) => { - state.data = new Array(1024 * 1024 * 4).fill('z').join('') + state.data = new Array(1024 * 1024 * 7).fill('z').join('') return state }]`; @@ -29,29 +35,39 @@ function run() { }, options: {}, }; - console.log('>> running', plan.id); + // console.log('>> running', plan.id); api.execute(plan, {}); api.listen(plan.id!, { 'workflow-complete': () => { completedCount++; + heap('workflow-complete'); console.log('>> Finished', completedCount); - setTimeout(() => { - run(); - }, 10); + // setTimeout(() => { + // run(); + // }, 10); }, }); } +const runBatch = () => { + for (let i = 0; i < 4; i++) { + run(); + } +}; + async function start() { api = await createAPI({ logger, - maxWorkers: 1, + maxWorkers: 4, }); - run(); + runBatch(); + setInterval(() => { + runBatch(); + }, 1000); } start(); From b63fe853e801db6f0efd0d366996aa0cce7107e2 Mon Sep 17 00:00:00 2001 From: Joe Clark Date: Mon, 27 Oct 2025 15:34:24 +0000 Subject: [PATCH 2/8] remove state entirely - just use context --- packages/engine-multi/src/engine.ts | 19 +------------------ packages/engine-multi/test/engine.test.ts | 22 ---------------------- 2 files changed, 1 insertion(+), 40 deletions(-) diff --git a/packages/engine-multi/src/engine.ts b/packages/engine-multi/src/engine.ts index 0de461f7f..c0d41bda0 100644 --- a/packages/engine-multi/src/engine.ts +++ b/packages/engine-multi/src/engine.ts @@ -100,7 +100,6 @@ const createEngine = async ( options: EngineOptions, workerPath?: string ): Promise => { - const states: Record = {}; const contexts: Record = {}; const deferredListeners: Record[]> = {}; @@ -144,15 +143,6 @@ const createEngine = async ( retries: options.workerValidationRetries, }); - const registerWorkflow = (plan: ExecutionPlan, input: State) => { - // TODO throw if already registered? - const state = createState(plan, input); - states[state.id] = state; - return state; - }; - - const getWorkflowState = (workflowId: string) => states[workflowId]; - const getWorkflowStatus = (workflowId: string) => states[workflowId]?.status; // TODO too much logic in this execute function, needs farming out @@ -165,13 +155,9 @@ const createEngine = async ( ) => { options.logger!.debug('executing plan ', plan?.id ?? ''); const workflowId = plan.id!; - // TODO throw if plan is invalid - // Wait, don't throw because the server will die - // Maybe return null instead - const state = registerWorkflow(plan, input); const context = new ExecutionContext({ - state, + state: createState(plan, input), logger: options.logger!, callWorker, options: { @@ -200,7 +186,6 @@ const createEngine = async ( // @ts-ignore execute(context).finally(() => { delete contexts[workflowId]; - delete states[workflowId]; context.removeAllListeners(); }); @@ -245,8 +230,6 @@ const createEngine = async ( options, workerPath: resolvedWorkerPath, logger: options.logger, - registerWorkflow, - getWorkflowState, getWorkflowStatus, execute: executeWrapper, listen, diff --git a/packages/engine-multi/test/engine.test.ts b/packages/engine-multi/test/engine.test.ts index 595b2c70e..c7269dcdc 100644 --- a/packages/engine-multi/test/engine.test.ts +++ b/packages/engine-multi/test/engine.test.ts @@ -53,28 +53,6 @@ test.serial('create an engine', async (t) => { test.todo('throw if the worker is invalid'); -test.serial('register a workflow', async (t) => { - const plan = { id: 'z' }; - engine = await createEngine(options); - - const state = engine.registerWorkflow(plan); - - t.is(state.status, 'pending'); - t.is(state.id, plan.id); - t.deepEqual(state.plan, plan); -}); - -test.serial('get workflow state', async (t) => { - const plan = { id: 'z' } as ExecutionPlan; - engine = await createEngine(options); - - const s = engine.registerWorkflow(plan); - - const state = engine.getWorkflowState(plan.id); - - t.deepEqual(state, s); -}); - test.serial('use the default worker path', async (t) => { engine = await createEngine({ logger, repoDir: '.' }); t.true(engine.workerPath.endsWith('worker/thread/run.js')); From 7a502503543ae4561d6fa3bad5a3c70867104c50 Mon Sep 17 00:00:00 2001 From: Joe Clark Date: Mon, 27 Oct 2025 15:53:39 +0000 Subject: [PATCH 3/8] tidy up and tweak test --- packages/engine-multi/src/api/lifecycle.ts | 14 -------------- packages/engine-multi/test/memtest.ts | 2 +- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/packages/engine-multi/src/api/lifecycle.ts b/packages/engine-multi/src/api/lifecycle.ts index c005753c3..3de02cfcd 100644 --- a/packages/engine-multi/src/api/lifecycle.ts +++ b/packages/engine-multi/src/api/lifecycle.ts @@ -52,23 +52,9 @@ export const workflowComplete = ( const { workflowId, state: result, threadId } = event; logger.success('complete workflow ', workflowId); - //logger.info(event.state); - - // TODO I don't know how we'd get here in this architecture - // if (!allWorkflows.has(workflowId)) { - // throw new Error(`Workflow with id ${workflowId} is not defined`); - // } - state.status = 'done'; state.duration = Date.now() - state.startTime!; - // Important! We do NOT write the result back to this state object - // It has a tendency to not get garbage collected and causing memory problems - - // TODO do we have to remove this from the active workflows array? - // const idx = activeWorkflows.findIndex((id) => id === workflowId); - // activeWorkflows.splice(idx, 1); - // forward the event on to any external listeners context.emit(externalEvents.WORKFLOW_COMPLETE, { threadId, diff --git a/packages/engine-multi/test/memtest.ts b/packages/engine-multi/test/memtest.ts index ba8c90de2..9169e237d 100644 --- a/packages/engine-multi/test/memtest.ts +++ b/packages/engine-multi/test/memtest.ts @@ -67,7 +67,7 @@ async function start() { runBatch(); setInterval(() => { runBatch(); - }, 1000); + }, 200); } start(); From 4e44ccad16f166ef06de40b1ef4319d202be1dee Mon Sep 17 00:00:00 2001 From: Joe Clark Date: Mon, 27 Oct 2025 16:06:42 +0000 Subject: [PATCH 4/8] restructure --- packages/ws-worker/perf/artillery.js | 127 ++++++++++++++++ packages/ws-worker/{ => perf}/clinic.js | 0 packages/ws-worker/perf/payload.json | 194 ++++++++++++++++++++++++ packages/ws-worker/test.js | 17 --- 4 files changed, 321 insertions(+), 17 deletions(-) create mode 100644 packages/ws-worker/perf/artillery.js rename packages/ws-worker/{ => perf}/clinic.js (100%) create mode 100644 packages/ws-worker/perf/payload.json delete mode 100644 packages/ws-worker/test.js diff --git a/packages/ws-worker/perf/artillery.js b/packages/ws-worker/perf/artillery.js new file mode 100644 index 000000000..7423636c3 --- /dev/null +++ b/packages/ws-worker/perf/artillery.js @@ -0,0 +1,127 @@ +// WORKER_DISABLE_EXIT_LISTENERS=true clinic heapprofiler -- node clinic.js 1 --open false --collect-only +// start lightning: pnpm start --port 9991 +import { getHeapStatistics } from 'node:v8'; +import createWorker from './dist/index.js'; +import createRTE from '@openfn/engine-multi'; +import createLightningServer from '@openfn/lightning-mock'; + +import payload from './payload.json' with { type: 'json' }; +import { createMockLogger } from '@openfn/logger'; +const obj = JSON.stringify({ + data: payload.data, + // This payload is too large for the lightning mock to consume + // references: payload.references.slice(0,30) + + // seems OK + references: payload.references.slice(0,10) +}) +// const obj = JSON.stringify({ +// data: "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "response": { + "url": "https://docs.openfn.org/documentation", + "method": "GET", + "headers": { + "age": "19", + "via": "1.1 varnish", + "date": "Mon, 27 Oct 2025 11:30:35 GMT", + "etag": "\"68fa5816-7d91\"", + "vary": "Accept-Encoding", + "server": "GitHub.com", + "expires": "Thu, 23 Oct 2025 16:55:14 GMT", + "x-cache": "HIT", + "x-timer": "S1761564636.816519,VS0,VE1", + "connection": "keep-alive", + "x-served-by": "cache-lin1730028-LIN", + "content-type": "text/html; charset=utf-8", + "x-cache-hits": "1", + "accept-ranges": "bytes", + "cache-control": "max-age=600", + "last-modified": "Thu, 23 Oct 2025 16:30:14 GMT", + "x-proxy-cache": "MISS", + "content-length": "32145", + "x-fastly-request-id": "2f61178467535c910341b253fda51490a18852ed", + "x-github-request-id": "CC65:1CEE8C:27C3857:28584BA:68FA5B99", + "access-control-allow-origin": "*" + }, + "duration": 287, + "statusCode": 200, + "statusMessage": "OK" + }, + "references": [ + {}, + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n", + "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Version: v2 ⚡

What is OpenFn?

OpenFn is the leading\nDigital Public Good for\nworkflow automation.

\n

It is a platform that's been used by 70+ NGOs and government ministries to\nautomate and integrate critical business processes and information systems.

\n

Connect any app with OpenFn's library of open-source Adaptors\n(i.e., connectors). From last-mile services to national-level reporting, OpenFn\nboosts efficiency & effectiveness while enabling secure, stable, scalable\ninteroperability at all levels.

\n

OpenFn can be deployed locally or on the secure\ncloud-hosted platform. See the\nDeployment docs for more on deployment options\nand requirements.

\n

To support implementers, OpenFn has an online\ncommunity, documentation, and\nsupport. Contact\npartnerships@openfn.org to learn about\nOpenFn implementation partners and the OpenFn Partner Program.

\n
Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs to\nconnect the different technologies they use, automate critical business\nprocesses, and scale their interventions. OpenFn enables automation,\nintegration, and data interoperability for the worlds most impactful\norganizations.

\n

Our products

\n

OpenFn has a suite of products, which are all fully interoperable. This gives\nour users the freedom to switch between any and all of the OpenFn products.

\n

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free and\nopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a\n"DPG") recognized in the\nDPG Registry and Digital Square's\nGlobal Goods Guidebook.

\n

The core OpenFn products include:

\n
    \n
  • OpenFn/lightning: our open source\ndata integration & workflow automation platform. This is the "v2" version\ncurrently in use.
  • \n
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due to\nbe sunsetted in 2025
  • \n
  • OpenFn/adaptors: source code for\nadaptors
  • \n
  • OpenFn/kit: CLI, developer tools and\nJavascript runtimes
  • \n
  • OpenFn/docs: documentation & source for\ndocs.openfn.org
  • \n
\n

See all products and code at GitHub.com/OpenFn.

\n

OpenFn v2: Lightning ⚡

\n

When you hear "OpenFn", think\nOpenFn/lightning. v2 is a fully open\nsource workflow automation web application which can be deployed and run\nanywhere. It is designed for governments and NGOs who want state-of-the-art\nworkflow automation and data integration/interoperability capabilities with\nfully-fledged user management and auditing capabilities through a managed or\nentirely self-hosted platform.

\n

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1\nand comes with an improved, visual interface for building integrations.

\n

\"OpenFn

\n

Check out the\nOpenFn v2 Basics playlist\non Youtube to watch videos that will help you get started quickly, or check out\nthe other docs pages on the site.

\n
OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using the\nlegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

\n

OpenFn v1

\n

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"\nfirst launched in 2015. OpenFn v1 was open-core with a proprietary web app.

\n

The v1 platform will be sunsetted by 2025 and replaced by the fully open-source\nOpenFn v2 (see above).

\n

OpenFn developer tooling

\n

OpenFn/kit provides a CLI and set of developer\ntools for writing & testing workflows, managing OpenFn projects, and developing\nAdaptors.

\n
Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully open\nsource ("FOSS") integration tools and adaptors in their respective repositories\nat GitHub.com/OpenFn or see\nDeploy section for an overview of the FOSS\noptions and additional docs.

\n

Community

\n

To ask questions, report issues, or learn from other OpenFn implementers, check\nout our Discourse forum at community.openfn.org.\nSign up and join the conversation. Usually, that's the quickest way to get help\nif you've got questions that aren't answered here.

\n

If you have any questions about our products, ask on the Community or email the\ncore team support@openfn.org.

\n

Who is it built by?

\n

The primary steward of OpenFn is\nOpen Function Group, a global team of workflow\nautomation and data integration specialists and core contributors to OpenFn.\nLearn more about OpenFn's governance\nhere.

\n

The OpenFn Digital Public Good has\nbeen built by and for the growing community of NGOs, governments,\n"tech-for-good" partners, and open-source contributors working on the health and\nhumanitarian interventions in Low- and Middle-income Countries (LMICs).

\n\n" + ] +} diff --git a/packages/ws-worker/test.js b/packages/ws-worker/test.js deleted file mode 100644 index 708a372bf..000000000 --- a/packages/ws-worker/test.js +++ /dev/null @@ -1,17 +0,0 @@ -import { Socket } from 'phoenix'; -import { WebSocket } from 'ws'; - -const socket = new Socket('http://localhost:4000/worker', { - transport: WebSocket, -}); - -socket.onOpen(() => { - console.log('OPEN'); -}); - -socket.onError((e) => { - console.log('ERROR'); - console.log(e); -}); - -socket.connect(); From 0130fd85421db2b74e52235e6ae6ac07dd9714f3 Mon Sep 17 00:00:00 2001 From: Joe Clark Date: Mon, 27 Oct 2025 16:09:42 +0000 Subject: [PATCH 5/8] add timestamps to events --- packages/ws-worker/src/api/execute.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/ws-worker/src/api/execute.ts b/packages/ws-worker/src/api/execute.ts index 1f9cdd2a1..cbf85892e 100644 --- a/packages/ws-worker/src/api/execute.ts +++ b/packages/ws-worker/src/api/execute.ts @@ -121,8 +121,13 @@ export function execute( const lightningEvent = eventMap[eventName] ?? eventName; try { // updateSentryEvent(eventName); + let start = Date.now(); await handler(context, event); - logger.info(`${plan.id} :: ${lightningEvent} :: OK`); + logger.info( + `${plan.id} :: sent ${lightningEvent} :: OK :: ${ + Date.now() - start + }ms` + ); } catch (e: any) { if (!e.reportedToSentry) { Sentry.captureException(e); From 73f1ee966a8f8a559faa5ecab0e000d90d699c78 Mon Sep 17 00:00:00 2001 From: Joe Clark Date: Mon, 27 Oct 2025 17:52:49 +0000 Subject: [PATCH 6/8] performance tests --- packages/ws-worker/perf/mem-empty.js | 12 ++ packages/ws-worker/perf/mem-large.js | 219 +++++++++++++++++++++++++++ packages/ws-worker/perf/mem-small.js | 26 ++++ 3 files changed, 257 insertions(+) create mode 100644 packages/ws-worker/perf/mem-empty.js create mode 100644 packages/ws-worker/perf/mem-large.js create mode 100644 packages/ws-worker/perf/mem-small.js diff --git a/packages/ws-worker/perf/mem-empty.js b/packages/ws-worker/perf/mem-empty.js new file mode 100644 index 000000000..0f8dbfad3 --- /dev/null +++ b/packages/ws-worker/perf/mem-empty.js @@ -0,0 +1,12 @@ +import { getHeapStatistics } from 'node:v8'; + +function heap(reason) { + const { used_heap_size } = getHeapStatistics(); + const mb = used_heap_size / 1024 / 1024; + console.log(`>> [${reason}] Used heap at ${mb.toFixed(2)}mb`); +} + +heap('start'); +setTimeout(() => { + heap('end'); +}, 1000); diff --git a/packages/ws-worker/perf/mem-large.js b/packages/ws-worker/perf/mem-large.js new file mode 100644 index 000000000..3a5f980fc --- /dev/null +++ b/packages/ws-worker/perf/mem-large.js @@ -0,0 +1,219 @@ +import { getHeapStatistics } from 'node:v8'; + +function heap(reason) { + const { used_heap_size } = getHeapStatistics(); + const mb = used_heap_size / 1024 / 1024; + console.log(`>> [${reason}] Used heap at ${mb.toFixed(2)}mb`); +} + +// I think this is about 5mb of JSON +const json = `{ + "data": "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "response": { + "url": "https://docs.openfn.org/documentation", + "method": "GET", + "headers": { + "age": "19", + "via": "1.1 varnish", + "date": "Mon, 27 Oct 2025 11:30:35 GMT", + "etag": "68fa5816-7d91", + "vary": "Accept-Encoding", + "server": "GitHub.com", + "expires": "Thu, 23 Oct 2025 16:55:14 GMT", + "x-cache": "HIT", + "x-timer": "S1761564636.816519,VS0,VE1", + "connection": "keep-alive", + "x-served-by": "cache-lin1730028-LIN", + "content-type": "text/html; charset=utf-8", + "x-cache-hits": "1", + "accept-ranges": "bytes", + "cache-control": "max-age=600", + "last-modified": "Thu, 23 Oct 2025 16:30:14 GMT", + "x-proxy-cache": "MISS", + "content-length": "32145", + "x-fastly-request-id": "2f61178467535c910341b253fda51490a18852ed", + "x-github-request-id": "CC65:1CEE8C:27C3857:28584BA:68FA5B99", + "access-control-allow-origin": "*" + }, + "duration": 287, + "statusCode": 200, + "statusMessage": "OK" + }, + "references": [ + {}, + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

", + "What is OpenFn? | OpenFn/docs
Version: v2 ⚡

What is OpenFn?

OpenFn is the leadingDigital Public Good forworkflow automation.

It is a platform that's been used by 70+ NGOs and government ministries toautomate and integrate critical business processes and information systems.

Connect any app with OpenFn's library of open-source Adaptors(i.e., connectors). From last-mile services to national-level reporting, OpenFnboosts efficiency & effectiveness while enabling secure, stable, scalableinteroperability at all levels.

OpenFn can be deployed locally or on the securecloud-hosted platform. See theDeployment docs for more on deployment optionsand requirements.

To support implementers, OpenFn has an onlinecommunity, documentation, andsupport. Contactpartnerships@openfn.org to learn aboutOpenFn implementation partners and the OpenFn Partner Program.

Automation, integration, & interoperability

OpenFn is open source software that makes it easier for governments and NGOs toconnect the different technologies they use, automate critical businessprocesses, and scale their interventions. OpenFn enables automation,integration, and data interoperability for the worlds most impactfulorganizations.

Our products

OpenFn has a suite of products, which are all fully interoperable. This givesour users the freedom to switch between any and all of the OpenFn products.

All OpenFn products, other than the OpenFn v1 iPaaS, are part of the free andopen-source OpenFn Integration Toolkit, which is a Digital Public Good (a"DPG") recognized in theDPG Registry and Digital Square'sGlobal Goods Guidebook.

The core OpenFn products include:

  • OpenFn/lightning: our open sourcedata integration & workflow automation platform. This is the "v2" versioncurrently in use.
  • OpenFn/platform: the first version of our platform. Replaced by v2 and due tobe sunsetted in 2025
  • OpenFn/adaptors: source code foradaptors
  • OpenFn/kit: CLI, developer tools andJavascript runtimes
  • OpenFn/docs: documentation & source fordocs.openfn.org

See all products and code at GitHub.com/OpenFn.

OpenFn v2: Lightning ⚡

When you hear "OpenFn", thinkOpenFn/lightning. v2 is a fully opensource workflow automation web application which can be deployed and runanywhere. It is designed for governments and NGOs who want state-of-the-artworkflow automation and data integration/interoperability capabilities withfully-fledged user management and auditing capabilities through a managed orentirely self-hosted platform.

Version 2 leverages the same tried-and-trusted core technology as the OpenFn v1and comes with an improved, visual interface for building integrations.

OpenFn

Check out theOpenFn v2 Basics playliston Youtube to watch videos that will help you get started quickly, or check outthe other docs pages on the site.

OpenFn v2 replaces v1

OpenFn v2 is available to any new users. All organizations currently using thelegacy OpenFn v1 platform will be migrated to OpenFn v2 by the end of 2024.

OpenFn v1

OpenFn v1 is the legacy OpenFn integration-platform-as-a-service or "iPaaS"first launched in 2015. OpenFn v1 was open-core with a proprietary web app.

The v1 platform will be sunsetted by 2025 and replaced by the fully open-sourceOpenFn v2 (see above).

OpenFn developer tooling

OpenFn/kit provides a CLI and set of developertools for writing & testing workflows, managing OpenFn projects, and developingAdaptors.

Browse all OpenFn code

You can view the technical documentation and source code for OpenFn's fully opensource ("FOSS") integration tools and adaptors in their respective repositoriesat GitHub.com/OpenFn or seeDeploy section for an overview of the FOSSoptions and additional docs.

Community

To ask questions, report issues, or learn from other OpenFn implementers, checkout our Discourse forum at community.openfn.org.Sign up and join the conversation. Usually, that's the quickest way to get helpif you've got questions that aren't answered here.

If you have any questions about our products, ask on the Community or email thecore team support@openfn.org.

Who is it built by?

The primary steward of OpenFn isOpen Function Group, a global team of workflowautomation and data integration specialists and core contributors to OpenFn.Learn more about OpenFn's governancehere.

The OpenFn Digital Public Good hasbeen built by and for the growing community of NGOs, governments,"tech-for-good" partners, and open-source contributors working on the health andhumanitarian interventions in Low- and Middle-income Countries (LMICs).

" + ] +} + +`; + +heap('start'); +console.time('parsing json'); +const obj1 = JSON.parse(json); +heap('obj1'); +const obj2 = JSON.parse(json); +heap('obj2'); +const obj3 = JSON.parse(json); +heap('obj3'); +console.timeEnd('parsing json'); +heap('after parse'); +setTimeout(() => { + heap('end'); +}, 1000); diff --git a/packages/ws-worker/perf/mem-small.js b/packages/ws-worker/perf/mem-small.js new file mode 100644 index 000000000..77f5dd494 --- /dev/null +++ b/packages/ws-worker/perf/mem-small.js @@ -0,0 +1,26 @@ +import { getHeapStatistics } from 'node:v8'; + +function heap(reason) { + const { used_heap_size } = getHeapStatistics(); + const mb = used_heap_size / 1024 / 1024; + console.log(`>> [${reason}] Used heap at ${mb.toFixed(2)}mb`); +} + +const json = `{ + "id": "a", + "triggers": [], + "edges": [], + "jobs": [ + { + "id": "job1", + "state": { "data": { "done": true } }, + "adaptor": "@openfn/language-common@1.7.7", + "body": { "result": 42 } + } + ] +} +`; + +heap('start'); +const obj = JSON.parse(json); +heap('end'); From 3c1617ab1930cc337f77b2eb28a205945264d3b6 Mon Sep 17 00:00:00 2001 From: Joe Clark Date: Mon, 27 Oct 2025 17:56:09 +0000 Subject: [PATCH 7/8] tidy and changeset --- .changeset/ripe-wolves-sniff.md | 6 ++++++ packages/engine-multi/src/engine.ts | 4 ---- packages/engine-multi/test/engine.test.ts | 1 - packages/engine-multi/test/memtest.ts | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) create mode 100644 .changeset/ripe-wolves-sniff.md diff --git a/.changeset/ripe-wolves-sniff.md b/.changeset/ripe-wolves-sniff.md new file mode 100644 index 000000000..cdd13835e --- /dev/null +++ b/.changeset/ripe-wolves-sniff.md @@ -0,0 +1,6 @@ +--- +'@openfn/engine-multi': patch +'@openfn/ws-worker': patch +--- + +Fix an issue where memory may not be released after runs diff --git a/packages/engine-multi/src/engine.ts b/packages/engine-multi/src/engine.ts index c0d41bda0..ce7109228 100644 --- a/packages/engine-multi/src/engine.ts +++ b/packages/engine-multi/src/engine.ts @@ -23,7 +23,6 @@ import type { EventHandler, ExecuteOptions, RuntimeEngine, - WorkflowState, } from './types'; import type { AutoinstallOptions } from './api/autoinstall'; @@ -143,8 +142,6 @@ const createEngine = async ( retries: options.workerValidationRetries, }); - const getWorkflowStatus = (workflowId: string) => states[workflowId]?.status; - // TODO too much logic in this execute function, needs farming out // I don't mind having a wrapper here but it must be super thin // TODO maybe engine options is too broad? @@ -230,7 +227,6 @@ const createEngine = async ( options, workerPath: resolvedWorkerPath, logger: options.logger, - getWorkflowStatus, execute: executeWrapper, listen, destroy, diff --git a/packages/engine-multi/test/engine.test.ts b/packages/engine-multi/test/engine.test.ts index c7269dcdc..a48e13046 100644 --- a/packages/engine-multi/test/engine.test.ts +++ b/packages/engine-multi/test/engine.test.ts @@ -1,7 +1,6 @@ import test from 'ava'; import path from 'node:path'; import { createMockLogger } from '@openfn/logger'; -import type { ExecutionPlan } from '@openfn/lexicon'; import createEngine, { InternalEngine } from '../src/engine'; import * as e from '../src/events'; diff --git a/packages/engine-multi/test/memtest.ts b/packages/engine-multi/test/memtest.ts index 9169e237d..b3ae4399c 100644 --- a/packages/engine-multi/test/memtest.ts +++ b/packages/engine-multi/test/memtest.ts @@ -11,7 +11,7 @@ const logger = createMockLogger(); let api: any; -function heap(reason) { +function heap(reason: string) { const { used_heap_size } = getHeapStatistics(); const mb = used_heap_size / 1024 / 1024; console.log(`>> [${reason}] Used heap at ${mb.toFixed(2)}mb`); From ea9ea5b44144e4c620eb4dc0327905f417621e79 Mon Sep 17 00:00:00 2001 From: Joe Clark Date: Mon, 27 Oct 2025 18:17:56 +0000 Subject: [PATCH 8/8] comments --- packages/ws-worker/perf/artillery.js | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/packages/ws-worker/perf/artillery.js b/packages/ws-worker/perf/artillery.js index 7423636c3..075ade287 100644 --- a/packages/ws-worker/perf/artillery.js +++ b/packages/ws-worker/perf/artillery.js @@ -9,15 +9,11 @@ import payload from './payload.json' with { type: 'json' }; import { createMockLogger } from '@openfn/logger'; const obj = JSON.stringify({ data: payload.data, - // This payload is too large for the lightning mock to consume - // references: payload.references.slice(0,30) - - // seems OK + + // Only send part of the payload or the mock will throw an error + // This is enough data to prove the point references: payload.references.slice(0,10) }) -// const obj = JSON.stringify({ -// data: "\n\n\n\n\nWhat is OpenFn? | OpenFn/docs\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n