Skip to content

Latest commit

 

History

History
140 lines (105 loc) · 5.12 KB

File metadata and controls

140 lines (105 loc) · 5.12 KB
title List mutualTlsOauthConfigurations
description Get a list of the available mutualTlsOauthConfiguration resources.
author sofia-geislinger
ms.date 12/31/2024
ms.localizationpriority medium
ms.subservice entra-id
doc_type apiPageType

List mutualTlsOauthConfigurations

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Get a list of the available mutualTlsOauthConfiguration resources.

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

HTTP request

GET /certificateAuthorities/mutualTlsOauthConfigurations

Optional query parameters

This method supports the $count, $filter, and $select 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 collection of mutualTlsOauthConfiguration objects in the response body.

For more information, see Microsoft Graph error responses and resource types.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/directory/certificateAuthorities/mutualTlsOauthConfigurations

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


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/mutualTlsOauthConfigurations",
  "value": [
    {
      "id": "a7199212-950f-4a2d-ba1e-017c48da1d19",
      "deletedDateTime": null,
      "displayName": "Standard TLS cert config",
      "tlsClientAuthParameter": "tls_client_auth_san_uri",
      "certificateAuthorities": [
        {
          "@odata.type": "microsoft.graph.certificateAuthority"
        }
      ]
    }
  ]
}