Built something you're proud of? Tell the story. A quick G2 review of App Engine or Build Agent helps other developers see what's possible on ServiceNow. Share your experience.

Start the Adobe Sing flow from Flow Designer or another method

albert85
Tera Contributor

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

1 REPLY 1

Tai Vu
Kilo Patron

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