RegFox is powerful event registration platform for conferences, camps, classes, and more. It’s easy to use, highly customizable, and unbelievably affordable.
Emit new event when a subscription or deposit has been completed. See docs here.
Emit new event when a form is succesfully published. See docs here.
Emit new event when a registrant applies to an event. See docs here.
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
The RegFox API provides programmatic access to event registration functionalities, allowing for the creation of custom registration experiences, data retrieval, and the automation of event management tasks. With Pipedream, you can harness this API to automate repetitive tasks, sync registration data with other services, and trigger actions based on event activities.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
regfox: {
type: "app",
app: "regfox",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.webconnex.com/v2/public/ping`,
headers: {
"apiKey": `${this.regfox.$auth.api_key}`,
},
})
},
})
Develop, run and deploy your Python code in Pipedream workflows. Integrate seamlessly between no-code steps, with connected accounts, or integrate Data Stores and manipulate files within a workflow.
This includes installing PyPI packages, within your code without having to manage a requirements.txt
file or running pip
.
Below is an example of using Python to access data from the trigger of the workflow, and sharing it with subsequent workflow steps:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}