List deviceLocalCredentialInfo

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.

Get a list of the deviceLocalCredentialInfo objects and their properties excluding the credentials.

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) DeviceLocalCredential.ReadBasic.All DeviceLocalCredential.Read.All
Delegated (personal Microsoft account) Not supported. Not supported.
Application DeviceLocalCredential.ReadBasic.All DeviceLocalCredential.Read.All

For delegated scenarios, the calling user must be a user assigned at least one of the following Microsoft Entra roles.

  • Cloud Device Administrator
  • Helpdesk Administrator
  • Intune Service Administrator
  • Security Administrator
  • Security Reader
  • Global Reader

HTTP request

To get a list of deviceLocalCredentialInfo within the tenant:

Caution

The GET /deviceLocalCredentials endpoint will be deprecated on December 31, 2023. Use the GET /directory/deviceLocalCredentials endpoint instead.

GET /directory/deviceLocalCredentials
GET /deviceLocalCredentials

Optional query parameters

This method supports the $select, $filter, $search, $orderby, $top, $count and $skiptoken OData query parameter to help customize the response.

The response might also contain an odata.nextLink, which you can use to page through the result set. For details, see Paging Microsoft Graph data.

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
User-Agent The identifier for the calling application. This value contains information about the operating system and the browser used. Required.
ocp-client-name The name of the client application performing the API call. This header is used for debugging purposes. Optional.
ocp-client-version The version of the client application performing the API call. This header is used for debugging purposes. Optional.

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 deviceLocalCredentialInfo objects excluding the credentials objects in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/directory/deviceLocalCredentials
User-Agent: "Dsreg/10.0 (Windows 10.0.19043.1466)"
ocp-client-name: "My Friendly Client"
ocp-client-version: "1.2"

Response

The following example shows the response.

HTTP/1.1 200 OK
Content-Type: application/json

{
  "value": [
    {
      "id": "b465e4e8-e4e8-b465-e8e4-65b4e8e465b4",
      "deviceName": "LAPS_TEST",
      "lastBackupDateTime": "2023-04-21T13:45:30.0000000Z",
      "refreshDateTime": "2020-05-20T13:45:30.0000000Z"
    },
    {
      "id": "c9a5d9e6-d2bd-4ff6-8a47-38b98800600c",
      "deviceName": "LAPS_TEST2",
      "lastBackupDateTime": "2023-04-21T13:45:30.0000000Z",
      "refreshDateTime": "2020-05-20T13:45:30.0000000Z"
    }
  ]
}