Skip to content

Latest commit

 

History

History
80 lines (68 loc) · 3.08 KB

File metadata and controls

80 lines (68 loc) · 3.08 KB
title personWebsite resource type
description Represents detailed information about websites associated with a user in various services.
ms.localizationpriority medium
author kevinbellinger
ms.subservice people
doc_type resourcePageType
ms.date 07/22/2024

personWebsite resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents detailed information about websites associated with a user in various services.

Inherits from itemFacet.

Methods

Method Return type Description
List personWebsite collection Get the personWebsite resources from the websites navigation property.
Create personWebsite Create a new personWebsite object.
Get personWebsite Read the properties and relationships of a personWebsite object.
Update personWebsite Update the properties of a personWebsite object.
Delete None Delete a personWebsite object.

Properties

Property Type Description
categories String collection Contains categories a user has associated with the website (for example, personal, recipes).
description String Contains a description of the website.
displayName String Contains a friendly name for the website.
webUrl String Contains a link to the website itself.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.personWebsite",
  "id": "String (identifier)",
  "allowedAudiences": "String",
  "inference": {
    "@odata.type": "microsoft.graph.inferenceData"
  },
  "createdDateTime": "String (timestamp)",
  "createdBy": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "lastModifiedDateTime": "String (timestamp)",
  "lastModifiedBy": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "source": {
    "@odata.type": "microsoft.graph.personDataSource"
  },
  "categories": [
    "String"
  ],
  "description": "String",
  "displayName": "String",
  "webUrl": "String"
}