How to update Flow Triggers in a custom connectors #2416
russgove
started this conversation in
Building Connectors
Replies: 1 comment
-
Also, are there any samples available of implementing custom flow triggers using azure functions. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm working on a flow connector to trigger a flow when an event is triggered in the office 365 management activity api as noted in #2397,
The connector is implemented using an Azure FUnction App. I have some questions about how to code the function to handle updates to the trigger. My connector has 2 parameters-- contentSource and eventsToCapture, If a user adds my connector to a flow it gets handled by my function app by storing the contentSource eventsToCapture and the flow triggure Url in an azure data table.
My questions are: how to i get the flow to call a separate method when the user changes one of the values in the trigger (or does it just call the same method as when the trigger is added.
What happens when a trigger gets deleted? How do i know when to remove the entry from my table?
My flow is currently set up like this:
Beta Was this translation helpful? Give feedback.
All reactions