run action sequence from snippet

Pat / Chandra,

As of the Millau U2 Release, we adjusted the syntax of the Action Sequences run() function to have named Action Framework Inputs be the first argument that run() accepts. So as of 11.2.x release, the recommended way to do this is the following:

var namedInputs = {<br>&nbsp; &nbsp; "ZipCode": "37408",<br>&nbsp; &nbsp; "TotalPounds": 4.5<br>};<br>skuid.actionSequences.getByName("GetShippingRate").run(namedInputs);


This is the supported way to invoke Action Sequences from JavaScript by name, passing in named inputs.