Create 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.
Create a new 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
POST /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPkiId}/certificateAuthorities
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 a JSON representation of the certificateAuthorityDetail object.
You can specify the following properties when creating a certificateAuthorityDetail.
Property | Type | Description |
---|---|---|
certificateAuthorityType | certificateAuthorityType | The type of certificate authority. The possible values are: root , intermediate , and unknownFutureValue . Optional. Supports $filter (eq ). |
certificate | Binary | The public key of the certificate authority. Required. |
displayName | String | The display name of the certificate authority. Optional. |
issuer | String | The issuer of the certificate authority. Optional. |
issuerSubjectKeyIdentifier | String | The subject key identifier of certificate authority. Optional. |
expirationDateTime | DateTimeOffset | The date and time when the certificate authority expires. Required. Supports $filter (eq ) and $orderby . |
thumbprint | String | The thumbprint of certificate authority certificate. Required. Supports $filter (eq , startswith ). |
certificateRevocationListUrl | String | The URL to check if the certificate is revoked. Optional. |
deltacertificateRevocationListUrl | String | The list of certificates that have been revoked since the last Certificate Revocation List (CRL) or Delta CRL was published, depending on which is most recent. Optional. |
isIssuerHintEnabled | Boolean | Indicates whether the certificate picker presents the certificate authority to the user to use for authentication. Default value is false . Optional. |
Response
If successful, this method returns a 201 Created
response code and a certificateAuthorityDetail object in the response body.
Examples
Request
The following example shows a request.
POST https://graph.microsoft.com/beta/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPkiId}/certificateAuthorities
Content-Type: application/json
{
"certificateAuthorityType": "intermediate",
}
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 201 Created
Content-Type: application/json
{
"@odata.type": "#microsoft.graph.certificateAuthorityDetail",
"id": "90777c92-2eb3-4a68-931d-4a3e1e1c741f",
"deletedDateTime": null,
"certificateAuthorityType": "intermediate",
"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
}