| title | impactedResource: dismiss |
|---|---|
| description | Dismiss a recommendationResource object and update its status to dismissed. |
| author | ddeeps2610 |
| ms.localizationpriority | medium |
| ms.subservice | entra-monitoring-health |
| doc_type | apiPageType |
| ms.date | 04/05/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Dismiss an impactedResources object and update its status to dismissed.
[!INCLUDE national-cloud-support]
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
[!INCLUDE permissions-table]
[!INCLUDE rbac-directory-recommendations-apis-write]
POST /directory/recommendations/{recommendationId}/impactedResources/{impactedResourceId}/dismiss| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
| Content-Type | application/json. Required. |
In the request body, supply a JSON representation of the parameters.
The following table shows the parameters that are required with this action.
| Parameter | Type | Description |
|---|---|---|
| dismissReason | String | Audited reason for deeming an impactedResource inapplicable to you. |
If successful, this action returns a 200 OK response code and a impactedResource in the response body.
The following example shows a request.
POST https://graph.microsoft.com/beta/directory/recommendations/0cb31920-84b9-471f-a6fb-468c1a847088_Microsoft.Identity.IAM.Insights.ApplicationCredentialExpiry/impactedResources/dbd9935e-15b7-4800-9049-8d8704c23ad2/dismiss
Content-Type: application/json
{
"dismissReason": "Application is no longer needed."
}[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#impactedResource",
"@odata.type": "#microsoft.graph.impactedResource",
"id": "dbd9935e-15b7-4800-9049-8d8704c23ad2",
"subjectId": "f9c3466a-9cb5-46ee-84db-e7e6e405b937",
"recommendationId": "7918d4b5-0442-4a97-be2d-36f9f9962ece_Microsoft.Identity.IAM.Insights.ApplicationCredentialExpiry",
"resourceType": "app",
"addedDateTime": "2022-03-19T09:40:39.0420371Z",
"postponeUntilDateTime": null,
"lastModifiedDateTime": "2022-04-04T20:43:28.9687029Z",
"lastModifiedBy": "b5fa65db-0d2b-4233-8788-ab0213567669",
"displayName": "Contoso IWA App Tutorial",
"owner": null,
"rank": 1,
"portalUrl": "https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationMenuBlade/Credentials/appId/ f9c3466a-9cb5-46ee-84db-e7e6e405b937",
"apiUrl": null,
"status": "dismissed",
"additionalDetails": [
{
"key": "ExpiringCredentialsCount",
"value": "1"
}
]
}