itemIdResolver resource type

Namespace: microsoft.graph.externalConnectors

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 is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.externalConnectors.itemIdResolver",
  "itemId": "String",  
  "priority": "Integer",
  "urlMatchInfo": {
    "@odata.type": "microsoft.graph.externalConnectors.urlMatchInfo"
  }
}