pkcs12Certificate resource type
Namespace: microsoft.graph
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 to the given API endpoint, which then validates the certificate.
Inherits from apiAuthenticationConfigurationBase.
Properties
Property | Type | Description |
---|---|---|
password | String | The password for the pfx file. Required. If no password is used, you must still provide a value of "" . |
pkcs12Value | String | Represents the pfx content that is sent. The value should be a base-64 encoded version of the actual certificate content. Required. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.pkcs12Certificate",
"pkcs12Value": "String",
"password": "String"
}