Create an Integration
The structure of an integration
What files are in an Integration package and what do they do?
Once you’ve created your Integration package, you can start developing it. In this stage of development, you’ll mainly be making changes to the src/index.ts
file.
src/index.ts
This is the entry point of the Integration package and where the client lives.
See the guide for creating a client for more information.
Adding Tasks
Tasks are what we call functions that are used inside the run()
function of a Job. For more about how tasks work, see the tasks documentation.
See the guide for adding tasks to your integration.
Adding Triggers
Triggers are what cause a Job to run. For more about how triggers work, see the triggers documentation.
See the guide for creating triggers for more information.
Was this page helpful?