convertIdResult resource type

Namespace: microsoft.graph

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

Properties

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

JSON representation

Here is a JSON representation of the resource.

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