Start the Adobe Sing flow from Flow Designer or another method
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2023 06:57 PM
Hello friends.
I have a requirement to automatically start the Adobe Sing flow when a task is generated, also passing the signing users and an attachment. I think that from Flow Designer or another method it could be achieved.
Could any of you guide me on how to carry out this requirement?
Thanks in advance, regards
Labels:
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2023 07:57 PM
Hi @albert85
You can define a business rule, which will trigger when a record is generated. And let's use the below API to start the flow.
startFlow(String name, Map inputs)
Sample.
var inputs = {};
inputs['current'] = now_GR; // GlideRecord of table: Incident
inputs['table_name'] = 'incident';
var contextId = sn_fd.FlowAPI.startFlow('global.test_flow', inputs);
Cheers,
Tai Vu