DYNAMICS 365 CALL WORKFLOW FROM JAVASCRIPT AND C#
 
              In another post, we saw how to              call custom actions from JavaScript and C#          .                  In this post, I will show you how to call workflows from JavaScript or C#  and to accomplish this, you need two parameters:                                The Workflow Id  that you want to call AND                               The Record Id  that the workflow will be executed against                            For the sake of the demo, I created a workflow that will set the Account Name field to:                                         WF Called and Updated From JavaScript  after calling the workflow from JavaScript                               WF Called and Updated From C#  after calling the workflow from C#                            Below is the end result after calling the workflow in JavaScript                                               Below is the end result after calling the workflow in C#                                                          ...