| title | Get certificateAuthorityDetail |
|---|---|
| description | Read the properties and relationships of a certificateAuthorityDetail object. |
| author | vimranga |
| ms.localizationpriority | medium |
| ms.subservice | entra-sign-in |
| doc_type | apiPageType |
| ms.date | 06/23/2025 |
Namespace: microsoft.graph
Read the properties and relationships of a certificateAuthorityDetail 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-cert-based-authpkis-apis]
GET /directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPkiId}/certificateAuthorities/{certificateAuthorityDetailId}This method supports the $select OData query parameter to help customize the response. For general information, see OData query parameters.
| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK response code and a certificateAuthorityDetail object in the response body.
The following example shows a request.
GET https://graph.microsoft.com/v1.0/directory/publicKeyInfrastructure/certificateBasedAuthConfigurations/{certificateBasedAuthPkiId}/certificateAuthorities/{certificateAuthorityDetailId}The following example shows the response.
HTTP/1.1 200 OK
Content-Type: application/json
{
"value": {
"@odata.type": "#microsoft.graph.certificateAuthorityDetail",
"id": "90777c92-2eb3-4a68-931d-4a3e1e1c741f",
"deletedDateTime": null,
"certificateAuthorityType": "root",
"certificate": "Binary",
"displayName": "Contoso2 CA1",
"issuer": "Contoso2",
"issuerSubjectKeyIdentifier": "C0E9....711A",
"createdDateTime": "2025-06-25T18:05:28Z",
"expirationDateTime": "2027-08-29T02:05:57Z",
"thumbprint": "C6FA....4E9CF2",
"certificateRevocationListUrl": null,
"deltacertificateRevocationListUrl": null,
"isIssuerHintEnabled": true
}
}