MobileCRM.Services.Workflow.Action.execute - Resconet/JSBridge GitHub Wiki
[v11.2] Asynchronously executes custom workfow action on the server.
Argument | Type | Description |
---|---|---|
actionName | String | The unique name of the custom action to execute. |
parameters | Object | The object containing the parameters for the custom action. |
success | function(string) | A callback function for successful asynchronous result. The result argument will carry the serialized response from the server. |
failed | function(error) | A callback function for command failure. The error argument will carry the error message. |
scope | A scope for calling the callbacks; set "null" to call the callbacks in global scope. |