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 the configuration data of a profile source created by an organization administrator. This configuration represents the source of profile data in a way that is understandable to end-users.
For more information about how to configure a profile source for an organization, see Manage profile source settings for an organization using the Microsoft Graph API.
Inherits from entity.
Methods
Method | Return type | Description |
---|---|---|
List | profileSource collection | Get a list of the profileSource objects and their properties, which represent both external data sources and out-of-the-box Microsoft data sources configured for user profiles in an organization. |
Create | profileSource | Create a new profileSource object. |
Get | profileSource | Read the properties and relationships of a profileSource object. |
Update | profileSource | Update the properties of a profileSource object. |
Delete | None | Delete a profileSource object. |
Properties
Property | Type | Description |
---|---|---|
displayName | String | Name of the profile source intended to inform users about the profile source name. |
id | String | System-generated GUID. Inherited from entity. |
kind | String | Type of the profile source. |
localizations | profileSourceLocalization collection | Alternative localized labels specified by an administrator. |
sourceId | String | Profile source identifier used as an alternate key. |
webUrl | String | Web URL of the profile source that directs users to the page view of profile data. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.profileSource",
"displayName": "String",
"id": "String (identifier)",
"kind": "String",
"localizations": [{"@odata.type": "microsoft.graph.profileSourceLocalization"}],
"sourceId": "String",
"webUrl": "String"
}