| 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 |
Namespace: microsoft.graph
Represents a generic error and its details.
| 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. |
None.
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"
}
}