Skip to content

Latest commit

 

History

History
121 lines (86 loc) · 4.41 KB

File metadata and controls

121 lines (86 loc) · 4.41 KB
title Update customAppScope
description Update an existing customAppScope object of an RBAC provider.
ms.localizationpriority medium
author cubika
ms.subservice entra-directory-management
doc_type apiPageType
ms.date 06/26/2024

Update customAppScope

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Update an existing customAppScope object of an RBAC provider.

Currently only the Exchange Online RBAC provider is supported.

[!INCLUDE national-cloud-support]

Permissions

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]

HTTP request

For an Exchange Online provider:

PATCH /roleManagement/exchange/customAppScopes/{id}

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
Content-Type application/json. Required.

Request body

In the request body, supply the values for relevant fields that should be updated. Existing properties that aren't included in the request body maintain their previous values or are recalculated based on changes to other property values. For best performance, don't include existing values that haven't changed.

Response

If successful, this method returns a 204 No Content response code. It doesn't return anything in the response body.

Examples

Request

The following example shows how to update an existing customAppScope of an Exchange Online provider.

PATCH https://graph.microsoft.com/beta/roleManagement/exchange/customAppScopes/d101e64d-4684-4970-ba7b-735b6b27628f
Content-type: application/json

{
    "customAttributes": {
        "RecipientFilter": "City -eq 'Seattle'"
    }
}

[!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]


Response

The following example shows the response.

HTTP/1.1 204 No Content