convertIdResult 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.

The result of an ID format conversion performed by the translateExchangeIds function.

Properties

Property Type Description
sourceId String The identifier that was converted. This value is the original, unconverted identifier.
targetId String The converted identifier. This value isn't present if the conversion failed.
errorDetails genericError An error object indicating the reason for the conversion failure. This value isn't present if the conversion succeeded.

JSON representation

The following JSON representation shows the resource type.

{
  "sourceId": "String",
  "targetId": "String",
  "errorDetails": {
    "@odata.type": "microsoft.graph.genericError"
  }
}