Questions tagged [term]
A class of the Microsoft.SharePoint.Taxonomy namespace, a Term represents a Term or a Keyword in a managed metadata hierarchy.
94 questions
0 votes
0 answers
13 views
Term Store Changes Not Showing Up Through Filter Query
I'm querying the Term Store using the following API: /_api/v2.0/termStore/groups/{groupID}/sets/{setId}/children?$select=id,properties&$filter=properties/any(p:p/key eq '{customPropertyKey}' and p/...
0 votes
1 answer
169 views
Updating Term Store Child Term through REST API
I have a few layers in my term store. Top down, I have Groups -> Sets -> Terms -> Children. I'm able to retrieve all of my terms and the children with the Graph APIs. I need to update a child ...
0 votes
1 answer
60 views
Built-in "People" Term Group, how values are been populated and can we use it inside SharePoint managed metadata column
Inside any SharePoint online we have a term group named "People", and each tenant will have different values under the term sets, here are the values from one tenant:- and on my test tenant ...
0 votes
1 answer
107 views
Creating List Items with related Terms
I'm trying to create a List Item, but is not clear to me how to provide the TermGuid. I've tried something like this: payload = { "fields": { "Title": "My item&...
0 votes
1 answer
29 views
How do I get the list of Terms not used in any TaxonomyField in a CSOM Console App?
I would like to delete terms not used in a TaxonomyField on any Item in a Document Library. I am new to CSOM and can't figure out how to proceed on this. Can you help, please?
0 votes
1 answer
570 views
How to get all terms's parent data in PnP?
I'm updating the dependencies of an old project, and one of them is upgrading from PnP 1.x to 3.x. We'll be running it on the latest SharePoint Online. In old project, it write the code to retrieve a ...
0 votes
1 answer
2k views
Can't create site term group as site administrator
I'm trying to add a site term group (and terms) using the new term store experience. I'm using a default communication site and also tried a group connected teams site. I simply don't have the "...
3 votes
2 answers
700 views
Is storing the Address as Custom Property for the our Customer term-set a valid/recommended approach
We have a term set named Customer, which is been used inside lists and libraries on multiple site collections inside our SharePoint online tenant. Here is the term set:- And here is one list which ...
0 votes
1 answer
212 views
Document Information Panel Validation Issue in Office 365 Word Desktop Client
I have created a document libray in SharePoint 2013 named as 'DIP' and I have added one required field named 'Type of Document' and this is a custom site column with data type Managed metadata. There ...
0 votes
1 answer
76 views
SharePoint Friendly URL can't see parent terms
Good day, I created Term Set for site collection. I use term set for Site Collection Navigation. The terms include friendly URL for some subsite pages. If I open first level friendly URL, I see First ...
1 vote
1 answer
900 views
Get Terms Path as per locale in SharePoint Online using CSOM
I am struggling to get terms path as per current locale. I have proper settings in SharePoint Term store for getting term label in English, Italian and German languages. I am getting taxonomy labels ...
1 vote
0 answers
539 views
How to Get Parent Term from child term using TaxCatchAll?
Suppose a SharePoint list has managed metadata column "A". List contains the item with the child term tagged to that "A" column. Now when I try to fetch the term using rest API like this: /_api/web/...
2 votes
5 answers
15k views
Rest API to return all Terms and their GUID
I am looking for SP Rest api to return all Terms and its GUID under specific termsets in my SP online Site and in my On Prem site. Is it possible? if not Rest API, is it possible to pull them using ...
1 vote
1 answer
1k views
SharePoint list change text of term ID to Managed Metadata column
I have a list with 2 columns, both are simple text and in one I have code in other one I have termId for Managed Metadata. What I want to do is create a new Managed Metadata column and then somehow ...
1 vote
1 answer
835 views
Method to get term URL in taxonomy in SharePoint TermStore using PnP JS library
Is there a method to get term URL in taxonomy in SharePoint TermStore using PnPJS library? I am using this code to retreive term Name, Parent and ID: export interface IPTerm { parent?: string; id:...