3 thoughts on “Microsoft Flow: update Multi value Managed Metadata Column of a Document Set

  1. I have been using this method since October 2019, but starting in May 2020 the managed meta data values fail to get set with no error being thrown. Nothing has changed in the SharePoint list. Are you still able to set the values using this method?

    1. Hi Paige,
      I just did a trigger a run of a Flow, I have not touched in years and it still seems to be working:

      HTTP post properties:
      Uri
      _api/web/lists(guid’d4969af7-c0ee-4961-ad93-b26d8f19dfc5′)/items(197)

      Headers
      {
      “Content-Type”: @{variables(‘varAcceptHeaderString’)},
      “Accept”: @{variables(‘varAcceptHeaderString’)},
      “X-HTTP-METHOD”: “MERGE”,
      “If-Match”: “*”
      }

      Body
      {
      “__metadata”:{
      “type”:”@{variables(‘varListItemEntityTypeFullName’)}”
      },
      “DocumentSetDescription”:”Set created by : @{triggerBody()?[‘Author’]?[‘DisplayName’]}”,
      “@{variables(‘varMM_BacklogItemStatusHiddenInternalName’)}”:”@{triggerBody()?[‘MM_BacklogItemStatus’]?[‘Value’]}”,
      “@{variables(‘varMM_BacklogItemCategoryHiddenInternalName’)}”:”@{variables(‘varMM_BacklogItemCategorySelected’)}”
      }

      1. Hey guys.

        I’m having the same problem as Paige, where I used to set the value of my managed metadata colums using

        “HiddenInternalCilumnName”:”SelectedTermSetValue|TermSetGUID”

        This worked fine a month or two ago but suddenly stopped working without trhrowing any error. Any ideas for a workaround?

        Cheers,

Leave a comment