Sometimes you want to subscribe to a webhook but you don’t know the exact configuration until runtime.Documentation Index
Fetch the complete documentation index at: https://trigger-v3-fix-additional-files.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Constructor
DynamicTrigger()
Creates a newDynamicTrigger instance. You should use the TriggerClient.defineDynamicTrigger method instead of calling this directly.
Instance methods
register()
Use this method to register a new schedule with the DynamicTrigger.unregister()
Use this method to unregister a schedule from the DynamicTrigger, using the id you used when registering it.Example use cases:
Subscribe to new GitHub issues for all your repos
- Create a
DynamicTriggerwith the onIssueOpened event. - Loop through all of your repos add them to it.
- Use an onNewRepository trigger and add them to the
DynamicTrigger.

