Skip to content

Latest commit

 

History

History
136 lines (109 loc) · 4.73 KB

dailyuserinsightmetricsroot-list-signups.md

File metadata and controls

136 lines (109 loc) · 4.73 KB
title description author ms.localizationpriority ms.subservice doc_type
List daily signUps
Get a list of daily user sign-ups on apps registered in your tenant configured for Microsoft Entra External ID for customers.
srutto
medium
entra-monitoring-health
apiPageType

List daily signUps

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Get a list of daily user sign-ups on apps registered in your tenant configured for Microsoft Entra External ID for customers.

[!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-ciam-user-insights-apis]

HTTP request

GET /reports/userInsights/daily/signUps

Optional query parameters

This method supports the $filter OData query parameter 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 userSignUpMetric objects in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/reports/userInsights/daily/signUps

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

[!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#Collection(microsoft.graph.userSignUpMetric)",
  "value": [
    {
      "id": "3",
      "factDate": "2023-09-20",
      "count": 1,
      "os": "MacOs"
    },
    {
      "id": "1",
      "factDate": "2023-09-20",
      "count": 5,
      "os": "Windows"
    },
    {
      "id": "1",
      "factDate": "2023-09-21",
      "count": 4,
      "os": "Windows"
    }
  ]
}