| 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 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Represents detailed information about websites associated with a user in various services.
Inherits from itemFacet.
| 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. |
| 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. |
None.
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"
}