What module to use to create workflows

Hi All,

I am trying to create a Forge app that will create a workflow when the app is installed however I am struggling to understand what module you should use in the manifest.yaml file.
I can see there are modules for workflow validator and workflow condition but nothing for creating the actual workflow itself.

I have a node.js app working locally that does it and I can easily follow the Forge documentation that will create the workflow but I just don’t know what module to us.

Would anyone be able to give me some guidance on this?

Regards,
Dean

Hey,

The simplest thing you could do is build a trigger that is invoked on the installation event that then calls the create Workflow REST API.

That assumes that’s all you’re trying to do and you don’t need any UI to manage workflows etc. If you did you might use something like an admin page.

1 Like

Thank you very much @AdamMoore !