Update certificateAuthorityDetail

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Update the properties of a certificateAuthorityDetail object.

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.

Permission type Least privileged permissions Higher privileged permissions
Delegated (work or school account) PublicKeyInfrastructure.ReadWrite.All Not available.
Delegated (personal Microsoft account) Not supported. Not supported.
Application PublicKeyInfrastructure.ReadWrite.All Not available.

Important

In delegated scenarios with work or school accounts where the signed-in user is acting on another user, they must be assigned a supported Microsoft Entra role or a custom role with a supported role permission. The following least privileged roles are supported for this operation.

  • Privileged Authentication Administrator
  • Authentication Administrator

HTTP request

PATCH /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPkiId}/certificateAuthorities/{certificateAuthorityDetailId}

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 only the values for properties to update. Existing properties that aren't included in the request body maintain their previous values or are recalculated based on changes to other property values.

The following table specifies the properties that can be updated.

Property Type Description
certificateAuthorityType certificateAuthorityType The type of certificate authority. The possible values are: root, intermediate, unknownFutureValue.
certificate Binary The type of certificate authority. Possible values are: root, intermediate.
displayName String The name of the certificate authority.
issuer String The issuer of the certificate authority.
issuerSubjectKeyIdentifier String The subject key identifier of certificate authority.
createdDateTime DateTimeOffset The date and time when the certificate authority was created.
expirationDateTime DateTimeOffset The date and time when the certificate authority expires. Required.
thumbprint String The thumbprint of certificate authority certificate. Required.
certificateRevocationListUrl String The URL to check if the certificate is revoked.
deltacertificateRevocationListUrl String The URL to check if the certificate is revoked.
isIssuerHintEnabled Boolean Indicates whether the certificate picker presents the certificate authority to the user to use for authentication. Default value is false.

Response

If successful, this method returns a 200 OK response code and an updated certificateAuthorityDetail object in the response body.

Examples

Request

The following example shows a request.

PATCH https://graph.microsoft.com/beta/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPkiId}/certificateAuthorities/{certificateAuthorityDetailId}
Content-Type: application/json

{

   "isIssuerHintEnabled": true
   
}

Response

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.type": "#microsoft.graph.certificateAuthorityDetail",
  "id": "90777c92-2eb3-4a68-931d-4a3e1e1c741f",
  "deletedDateTime": null,
  "certificateAuthorityType": "root",
  "certificate": "Binary",
  "displayName": "Contoso2 CA1",
  "issuer": "Contoso2",
  "issuerSubjectKeyIdentifier": "C0E9....711A",
  "createdDateTime": "2024-10-25T18:05:28Z",
  "expirationDateTime": "2027-08-29T02:05:57Z",
  "thumbprint": "C6FA....4E9CF2",
  "certificateRevocationListUrl": null,
  "deltacertificateRevocationListUrl": null,
  "isIssuerHintEnabled": true

}