An OpenFn adaptor for building integration jobs for use with the RapidPro API.
View the docs site for full technical documentation.
View all the required and optional properties for state.configuration
in the
official
configuration-schema
definition.
sendBroadcast({
"text": "Hello friends.",
"urns": [],
"contacts": [],
"groups", [],
});
sendBroadcast(...) to send broadcast message to multiple contacts
sendBroadcast({
text: 'Hello world',
urns: ['twitter:sirmixalot'],
contacts: ['a052b00c-15b3-48e6-9771-edbaa277a353'],
});
startFlow(...) to trigger an automation flow in RapidPro
startFlow({
flow: 'f5901b62-ba76-4003-9c62-72fdacc1b7b7',
restart_participants: false,
contacts: ['a052b00c-15b3-48e6-9771-edbaa277a353'],
});
upsertContact(...) to update/insert a Contact (and check if exists using external identifiers)
upsertContact({
name: 'Mamadou',
language: 'ENG',
urns: ['tel:+250788123123'],
});
addContact(...) to insert a Contact
addContact({
name: 'Mamadou',
language: 'ENG',
urns: ['tel:+250788123123'],
});
Clone the adaptors monorepo. Follow the
Getting Started
guide inside to get set up.
Run tests using pnpm run test
or pnpm run test:watch
Build the project using pnpm build
.
To just build the docs run pnpm build docs