You need to sign in to do that
Don't have an account?
Running a Future method web callout and store values to use in a flow
Hello I have several web call outs to Trello that return the boards, the lists and the labels. I want to use these in a flow to create a new Trello card but all these methods are future methods. What is the best approach for saving the values to use in a flow and using these methods to keep the lists up to date.
so basically the flow would look like this
1. what board do you want to save to ( names and id's returned from future method call out)
2. what list on this board ( takes the ID of the board and feeds it to the out bound future method and returns the name and id's of lists)
3 what's the name and description (takes the ids from step 1 and 2 and puts sends an outbound post request to Trello to create the card)
4 do you want to add any labels ( returns the us of the card and the updates with the labels returned from Trello )
my thoughts are maybe custom meta data types then launch the future methods as batches to keep them updated
if you have a better solution please let me know !!!
so basically the flow would look like this
1. what board do you want to save to ( names and id's returned from future method call out)
2. what list on this board ( takes the ID of the board and feeds it to the out bound future method and returns the name and id's of lists)
3 what's the name and description (takes the ids from step 1 and 2 and puts sends an outbound post request to Trello to create the card)
4 do you want to add any labels ( returns the us of the card and the updates with the labels returned from Trello )
my thoughts are maybe custom meta data types then launch the future methods as batches to keep them updated
if you have a better solution please let me know !!!
I basically created a new custom object and now update this with batch and just use the flow to pull these records