personWebsite resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

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

Inherits from itemFacet.

Methods

Method Return type Description
List websites personWebsite collection Get the personWebsite resources from the websites navigation property.
Create personWebsite personWebsite Create a new personWebsite object.
Get personWebsite personWebsite Read the properties and relationships of a personWebsite object.
Update personWebsite personWebsite Update the properties of a personWebsite object.
Delete personWebsite None Deletes 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 is a JSON representation of the resource.

{
  "@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"
}