Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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 | 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"
}