Hi, I have created a term group and term set in term store and would like to update the term store when a Sharepoint list is updated with emp id.
Unique ID for term set:
I have then created a Power Automate process to add a new term to the term set based on the sharepoint list:
The Uri displays an error, any help to update the Sharepoint term store would be greatly appreciated.
Hi @Arajan11,
You want to add a new term to the Emp Id term set and you are getting that value from a new SharePoint list item, correct?
If that is the case you could use a POST request which creates a new children item.
Below is an example
URI
_api/v2.1/termStore/groups/@{variables('TermGroupId')}/sets/@{variables('TermSetId')}/children
Body
{
"labels": [
{
"name": "@{variables('EmployeeID')}",
"isDefault": true,
"languageTag": "en-US"
}
]
}
Michael E. Gernaey
783
Super User 2025 Season 2
Tomac
515
Moderator
trice602
299
Super User 2025 Season 2