0

I am able to use power automate and trigger azure devops work item change, work item created options. But I am trying to find if there is a way to retrieve particular work item field, custom field changes and what values are updated. For example, if target work item date is changed from x to y, I want to sent a notification that value is updated from x to y. Will power automate support the functionality? Any suggestion or pointer would be of great help.

Kurkula
  • 6,386
  • 27
  • 127
  • 202

1 Answers1

1

You could check which values have changed via the Updates method of the DevOps REST API, https://learn.microsoft.com/en-us/rest/api/azure/devops/wit/updates/list?view=azure-devops-rest-6.0&tabs=HTTP

I have shared an example of that approach in this thread: Power Automate - How to create Azure DevOps work items only once when the trigger is a work item update?

Expiscornovus
  • 1,222
  • 1
  • 3
  • 7
  • for example if I want check only if the title was changed or not then what would be my action in the settings? – Kurkula Oct 24 '22 at 20:11