pkcs12Certificate resource type
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.
Represents the configuration used to upload a certificate when using HTTPS client-certificate authentication for calling an API connector endpoint. Client certificate authentication is a mutual certificate-based authentication, where the client provides a client certificate to an API endpoint to prove its identity. Microsoft Entra ID sends the configured certificate of an API connector to the given API endpoint, which then validates the certificate.
Inherits from apiAuthenticationConfigurationBase.
Properties
Property | Type | Description |
---|---|---|
pkcs12Value | String | Specifies the field for sending pfx content. The value should be a base-64 encoded version of the actual certificate content. Required. |
password | String | Specifies the password for the pfx file. Required. If no password is used, must still provide a value of "" . |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.pkcs12Certificate",
"pkcs12Value": "String",
"password": "String"
}