Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

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
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