itemIdResolver resource type
Namespace: microsoft.graph.externalConnectors
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.
Defines the rules for resolving a URL to the ID of an externalItem.
Inherits from urlToItemResolverBase.
Properties
Property | Type | Description |
---|---|---|
itemId | String | Pattern that specifies how to form the ID of the external item that the URL represents. The named groups from the regular expression in urlPattern within the urlMatchInfo can be referenced by inserting the group name inside curly brackets. |
priority | Int32 | Priority of each urlToItemResolverBase instance. Inherited from urlToItemResolverBase. |
urlMatchInfo | microsoft.graph.externalConnectors.urlMatchInfo | Configurations to match and resolve URL. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.externalConnectors.itemIdResolver",
"priority": "Integer",
"itemId": "String",
"urlMatchInfo": {
"@odata.type": "microsoft.graph.externalConnectors.urlMatchInfo"
}
}