Get certificateBasedApplicationConfiguration
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.
Read the properties and relationships of a certificateBasedApplicationConfiguration object.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
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) | AppCertTrustConfiguration.Read.All | AppCertTrustConfiguration.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | AppCertTrustConfiguration.Read.All | AppCertTrustConfiguration.ReadWrite.All |
Important
In delegated scenarios with work or school accounts, the signed-in user 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.
- Application Administrator
- Cloud Application Administrator
HTTP request
GET /directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfigurationId}
Optional query parameters
This method supports $select
and $expand
OData query parameters to help customize the response. For general information, see OData query parameters.
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a certificateBasedApplicationConfiguration object in the response body.
Examples
Example 1: Get a single chain of trust from the certificateBasedApplicationConfiguration collection
The following example shows how to get a single chain of trust from the certificateBasedApplicationConfigurations collection.
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/directory/certificateAuthorities/certificateBasedApplicationConfigurations/0a6a9b97-b84c-406a-a703-14d699d1fbb1
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
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#directory/certificateAuthorities/certificateBasedApplicationConfigurations/$entity",
"id": "0a6a9b97-b84c-406a-a703-14d699d1fbb1",
"deletedDateTime": null,
"displayName": "Tenant Trusted Certificate Chain of Trust for Application Configuration",
"description": "The Trusted Certificate Chain of Trust containing a certificate chain used by app policy, to only allow application certificates from this issuer."
}
Example 2: Get the trustedCertificateAuthorities with in single chain of trust
The following example shows how to get the trustedCertificateAuthorities within a single chain of trust in the certificateBasedApplicationConfigurations collection.
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/directory/certificateAuthorities/certificateBasedApplicationConfigurations/certificateBasedApplicationConfigurations/0a6a9b97-b84c-406a-a703-14d699d1fbb1?$expand=trustedCertificateAuthorities
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": [
{
"id": "eec5ba11-2fc0-4113-83a2-ed986ed13743",
"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": [
{
"id": "54a5974a-7cb0-432c-b10c-aff55fe62825",
"isRootAuthority": false,
"certificate": "MIIGrDCCBJSgAwIBAgITWgACAdWQXvWynRA6/AABAAIB",
"issuer": "DigiCert Cloud Services CA-1",
"issuerSubjectkeyIdentifier": "SKI"
},
{
"id": "cb459f03-fd88-4b45-a79b-b8593c6ebe81",
"isRootAuthority": true,
"certificate": "MIIHMDCCBRigAwIBAgITWgAAmdzMYKZPslw+twABAACZ",
"issuer": "Digicert Inc",
"issuerSubjectkeyIdentifier": "SKI"
}
]
}
]
}