Skip to content

Latest commit

 

History

History
143 lines (112 loc) · 5.96 KB

File metadata and controls

143 lines (112 loc) · 5.96 KB
title Create certificateBasedApplicationConfiguration
description Create a new certificateBasedApplicationConfiguration object.
author madansr7
ms.localizationpriority medium
ms.subservice entra-sign-in
doc_type apiPageType
ms.date 04/04/2024

Create certificateBasedApplicationConfiguration

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Create a new certificateBasedApplicationConfiguration object.

[!INCLUDE national-cloud-support]

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.

[!INCLUDE permissions-table]

[!INCLUDE rbac-trusted-app-cert-config-apis]

HTTP request

POST /directory/certificateAuthorities/certificateBasedApplicationConfigurations

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 certificateBasedApplicationConfiguration object.

Note: A maximum of 100 certificate-based application configuration objects are allowed per tenant. This includes any deleted or active objects.

You can specify the following properties when you create a certificateBasedApplicationConfiguration.

Property Type Description
description String The description for the configuration. Optional.
displayName String The friendly name for the configuration. Optional.
trustedCertificateAuthorities certificateAuthorityAsEntity Multi-value property that represents a list of trusted certificate authorities. At least one trusted certificate authority must be provided when you create a certificate-based application configuration.

Response

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

Examples

Request

POST https://graph.microsoft.com/beta/directory/certificateAuthorities/certificateBasedApplicationConfigurations
Content-Type: application/json

{
  "displayName": "Tenant Trusted Certificate Chain of Trust for Application Configuration",
  "description": "The Trusted Certificate Chain of Trust containing a certificate chain used by the Tenant app policy, to only allow application certificates from this issuer.",
  "trustedCertificateAuthorities ": [
    {
      "isRootAuthority": true,
      "certificate": "MIIHMDCCBRigAwIBAgITWgAAmdzMYKZPslw+twABAACZ"
    }
  ]
}

[!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]


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

{
  "value": {
    "@odata.type": "#microsoft.graph.certificateBasedApplicationConfiguration",
    "id": "d5b0af1c-9376-6b66-16b6-e402965862c1",
    "deletedDateTime": "String (timestamp)",
    "displayName": "Tenant Trusted Certificate Chain of Trust for Application Configuration",
    "description": "The Trusted Certificate Chain of Trust containing a certificate chain used by the Tenant app policy, to only allow application certificates from this issuer.",
    "trustedCertificateAuthorities ": [
      {
        "isRootAuthority": true,
        "certificate": "MIIHMDCCBRigAwIBAgITWgAAmdzMYKZPslw+twABAACZ"
      }
    ]
  }
}