skip to Main Content

Is there any way I can tag a single run execution of a logic app with some notes or details during the execution? I want to be able to search for a particular run using some string stored on the unique run. If this isn’t doable, does anyone recommend a good workaround for accomplishing this? Thanks

2

Answers


  1. You can retrieve the run id and persist it.

    enter image description here

    enter image description here

    Later, you could use this run id in the Runs history tab to go directly to the instance you are looking for.

    Login or Signup to reply.
  2. search for a particular run using some string stored on the unique run

    You can also grab the run id and use it for other tracking by initializing it to a variable in logic app also by using below expression in workflow:

    workflow()['run']['name']
    

    I used initializing a variable action:

    enter image description here

    Then save it

    enter image description here

    Output:

    enter image description here

    References taken from:

    I couldnt find Print run identifier action neither in standard nor in consumption:

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search