Questions from @chunkeat26:
- can we edit Processing Prompt in YAML?
- can we edit suggested timeout?
- How to we map the Success Output, in this case, it's 'id', into Flow.id?
- How do we define the next step of Data Action output, ie 'Success', 'Failure', 'Timeout'?
Hi @Becky_Powell and @chunkeat26,
You can see a list of all configurable properties by setting up the Visual Studio Code integration and hitting Ctrl + Space in the editor. See the guide to learn more about setting that up.
Once you've done that, you'll be able to see the following available properties in your YAML file when hitting Ctrl + Space:
- callData:
processingPrompt: <- (1) this property here is how you can set the processing prompt on a Call Data Action
lit:
name: Prompt.MyPrompt
timeout: <- (2) this property here is how you can set the timeout setting on a Call Data Action
lit:
minutes: 3
category: <- (3) this section shows how you can set the Success Outputs below. These are just placeholders and dont reflect what you will see in your organization.
MY_DATA_ACTION_CATEGORY:
dataAction:
MY_DATA_ACTION:
successOutputs:
my_data_action_success_output_id:
var: Flow.id
outputs: <- (4) this shows how to configure the output paths found on a Call Data Action to configure the actions
success:
actions:
- disconnect:
name: Disconnect Success
failure:
actions:
- disconnect:
name: Disconnect Failure
timeout:
actions:
- disconnect:
name: Disconnect
Thanks,
Jon
Hi Jon,
Thank you. this is working now. appreciate your quick response!
Regards,
CK
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.