Skip to content

Latest commit

 

History

History
52 lines (45 loc) · 1.15 KB

File metadata and controls

52 lines (45 loc) · 1.15 KB
title publicError resource type
description Represent a generic error and its details.
ms.localizationpriority medium
doc_type resourcePageType
ms.subservice teams
author AkJo
ms.date 07/22/2024

publicError resource type

Namespace: microsoft.graph

Represents a generic error and its details.

Properties

Property Type Description
code string Represents the error code.
details publicErrorDetail collection Details of the error.
innerError publicInnerError Details of the inner error.
message string A non-localized message for the developer.
target String The target of the error.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.publicError",
  "code": "String",
  "message": "String",
  "target": "String",
  "details": [
    {
      "@odata.type": "microsoft.graph.publicErrorDetail"
    }
  ],
  "innerError": {
    "@odata.type": "microsoft.graph.publicInnerError"
  }
}