Skip to content

Latest commit

 

History

History
117 lines (90 loc) · 4.67 KB

File metadata and controls

117 lines (90 loc) · 4.67 KB
title Update certificateBasedApplicationConfiguration
description Update the properties of a certificateBasedApplicationConfiguration object.
author madansr7
ms.localizationpriority medium
ms.subservice entra-sign-in
doc_type apiPageType
ms.date 11/06/2024

Update certificateBasedApplicationConfiguration

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Update the properties of a certificateBasedApplicationConfiguration object. To update the trustedCertificateAuthorities within a certificateBasedApplicationConfiguration object, use the Update certificateAuthorityAsEntity operation.

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

[!INCLUDE rbac-trusted-app-cert-config-apis]

HTTP request

PATCH /directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfigurationId}

Request headers

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

Request body

[!INCLUDE table-intro]

Property Type Description
displayName String The friendly name for the configuration.
description String The description for the configuration.

Response

If successful, this method returns a 204 No Content response code and does not return anything in the response body.

Examples

Request

The following example shows a request.

PATCH https://graph.microsoft.com/beta/directory/certificateAuthorities/certificateBasedApplicationConfigurations/d5b0af1c-9376-6b66-16b6-e402965862c1
Content-Type: application/json

{
  "@odata.type": "#microsoft.graph.certificateBasedApplicationConfiguration",
  "displayName": "New display name",
  "description": "New description text"
}

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