| title | Create trustedCertificateAuthority |
|---|---|
| description | Create a new trusted certificate authority in a certificateBasedApplicationConfiguration object. |
| author | madansr7 |
| ms.localizationpriority | medium |
| ms.subservice | entra-sign-in |
| doc_type | apiPageType |
| ms.date | 05/22/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Create a new trusted certificate authority in a certificateBasedApplicationConfiguration object.
[!INCLUDE national-cloud-support]
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]
POST /directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfigurationId}/trustedCertificateAuthorities| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
| Content-Type | application/json. Required. |
In the request body, supply a JSON representation of the certificateAuthorityAsEntity object.
You can specify the following properties when you create a certificateAuthorityAsEntity.
Note: A maximum of 10 trusted authorities are allowed per trustedCertificateAuthorities collection.
| Property | Type | Description |
|---|---|---|
| certificate | Binary | The trusted certificate. Required. |
| isRootAuthority | Boolean | Indicates if the certificate is a root authority. Required. Only one object in a trustedCertificateAuthorities collection can be the root authority. |
| issuer | String | The issuer of the trusted certificate. Required. |
| issuerSubjectKeyIdentifier | String | The subject key identifier of the trusted certificate. Required. |
If successful, this method returns a 201 Created response code and a certificateAuthorityAsEntity object in the response body.
The following example shows a request.
POST https://graph.microsoft.com/beta/directory/certificateAuthorities/certificateBasedApplicationConfigurations/0a6a9b97-b84c-406a-a703-14d699d1fbb1/trustedCertificateAuthorities
Content-Type: application/json
{
"isRootAuthority": true,
"certificate": "MIIGrDCCBJSgAwIBAgITWgACAdWQXvWynRA6/AABAAIB....",
"issuer": "ExampleIssuer",
"issuerSubjectKeyIdentifier": " BA:AF:4A:02:4D:AA:A6:F1:3C:25:8E:AD:FA:38:98:CE:D9:23:32:D9"
}[!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]
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.certificateAuthorityAsEntity",
"certificate": "MIIGrDCCBJSgAwIBAgITWgACAdWQXvWynRA6/AABAAIB",
"id": "b505a013-aebd-2dea-e9ec-a506fbde61d3",
"issuer": "ExampleIssuer",
"issuerSubjectKeyIdentifier": "BA:AF:4A:02:4D:AA:A6:F1:3C:25:8E:AD:FA:38:98:CE:D9:23:32:D9",
"isRootAuthority": true
}