Skip to content

Latest commit

 

History

History
147 lines (108 loc) · 4.26 KB

termstore-set-update.md

File metadata and controls

147 lines (108 loc) · 4.26 KB
title description author ms.localizationpriority ms.subservice doc_type
Update set
Update the properties of a set object.
mohitpcad
medium
sharepoint
apiPageType

Update set

Namespace: microsoft.graph.termStore

[!INCLUDE beta-disclaimer]

Update the properties of a set object.

[!INCLUDE national-cloud-support]

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

[!INCLUDE permissions-table]

HTTP request

PATCH /termStore/sets/{setId}

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
Content-Type application/json. Required.

Request body

In the request body, supply a JSON representation of the set object.

The following table shows the properties that can be edited for the set.

Property Type Description
localizedNames microsoft.graph.termStore.localizedName collection Name of the set
description String Description of the set
properties microsoft.graph.keyValue collection properties of a set

Response

If successful, this method returns a 200 OK response code and an updated set object in the response body.

Examples

Request

PATCH https://graph.microsoft.com/beta/termStore/sets/{setId}
Content-Type: application/json

{
  "description": "mySet"
}

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


Response

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-Type: application/json

{
  "id": "3607e9f9-e9f9-3607-f9e9-0736f9e90736",
  "description": "mySet",    
  "localizedNames" : [
    {
      "languageTag" : "en-US",
      "name" : "Department"
    }
  ]
}