webAccount 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 web accounts the user has indicated they use or have added to their user profile.
This resource type inherits from itemFacet.
Methods
Method | Return type | Description |
---|---|---|
List | webAccount collection | Get the webAccount resources from the webAccounts navigation property. |
Create | webAccount | Create a new webAccount object. |
Get | webAccount | Read the properties and relationships of a webAccount object. |
Update | webAccount | Update the properties of a webAccount object. |
Delete | None | Deletes a webAccount object. |
Properties
Property | Type | Description |
---|---|---|
allowedAudiences | String | The audiences that are able to see the values contained within the entity. Inherited from itemFacet. Possible values are: me , family , contacts , groupMembers , organization , federatedOrganizations , everyone , unknownFutureValue . |
createdBy | identitySet | Provides the identifier of the user and/or application that created the entity. Inherited from itemFacet. |
createdDateTime | DateTimeOffset | Provides the dateTimeOffset for when the entity was created. Inherited from itemFacet. |
description | String | Contains the description the user has provided for the account on the service being referenced. |
id | String | Identifier used for individually addressing the entity. Inherited from entity |
inference | inferenceData | Contains inference detail if the entity is inferred by the creating or modifying application. Inherited from itemFacet. |
lastModifiedBy | identitySet | Provides the identifier of the user and/or application that last modified the entity. Inherited from itemFacet. |
lastModifiedDateTime | DateTimeOffset | Provides the dateTimeOffset for when the entity was created. Inherited from itemFacet. |
service | serviceInformation | Contains basic detail about the service that is being associated. |
source | personDataSource | Where the values originated if synced from another service. Inherited from itemFacet. |
statusMessage | String | Contains a status message from the cloud service if provided or synchronized. |
userId | String | The user name displayed for the webaccount. |
webUrl | String | Contains a link to the user's profile on the cloud service if one exists. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.webAccount",
"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"
},
"description": "String",
"userId": "String",
"service": {
"@odata.type": "microsoft.graph.serviceInformation"
},
"statusMessage": "String",
"webUrl": "String"
}