Default Managed Metadata Field
Sharing my experience and the lessons learned while using Power Automate Flows to provision a new SharePoint site. We needed to set the default value for a managed metadata fields via REST API. Finding reliable documentation on this topic proved challenging, so I had to resort to trial and error.
Introduction
Power Automate Flow is a powerful tool for automating tasks in SharePoint such as provisioning a new Site. Setting the default value for a column is straight-forward for all types except managed metadata fields.
Finally, we found we could achieve this by with the one following REST call
REST Call
Send a POST request to the endpoint
../_api/web/lists/getbytitle('[LIBRARY NAME]')/fields/getbytitle('[FIELD NAME]')
with the payload
{
'__metadata':{
'type':'SP.Taxononmy.TaxonomyField'
},
'DefaultValue':'[TERM]'
}
Here TERM is is the format
[WssId];#[TERM NAME]|[TERM GUID]
e.g. 1;#HR Document|5aef1a57-679f-479c8-b8484e6c420d
WssId
The GUID can be retrieved from either the front-end of PowerShell, however, the WssId is a little trickier. This is the ID of the Term in the List TaxonomyHiddenList
https://[Site Url]/Lists/TaxonomyHiddenList
When a Term is first used in a Site it is added to this List as localised copy of the Term data for efficiency.
As we are provisioning a new Site the Term will not have been used, therefore, the WssId is set to 1 for the first call and incremented for subsequent metadata fields.
Leave a Reply