v1

latestOpenAPI 3.1.02026-07-245531,0212.1 MB
Service Monitoring Reports

View Quota Violations Report

Returns quota violation alerts details per MSP customers whose usage exceeds configured quota limits.

post/msp/reporting/v2/reports/mspServiceMonitoringQuotaViolations

Headers

Authorizationstring required

Specify the Bearer access token

Request body

pageTokenstring

The token used to retrieve the next page of results. Pass the nextPageToken value returned from the previous response. For the initial request, leave this field empty.

Example request

{
  "pageToken": "eyJwYWdlTnVtYmVyIjoyLCJwYWdlU2l6ZSI6NTAwLCAiZmlsdGVycyI6bnVsbH0=",
  "filters": {
    "pageSize": 10,
    "filterBy": [
      {
        "fieldName": "generatedOn",
        "value": "30",
        "operator": "GTE"
      },
      {
        "fieldName": "state",
        "value": [
          "Active"
        ],
        "operator": "CONTAINS"
      }
    ]
  }
}

Response

Ok

lastSyncTimestampstring date-time

When report data was last refreshed.

nextPageTokenstring

The token to access the next page of results. This parameter will be empty for the last page of results.

Example response

{
  "data": [
    {
      "accountName": "Example Customer",
      "alertId": 6339,
      "consumptionParameter": "Total Active Devices or Backup sets",
      "customerGlobalId": "bde7f8c2-d063-4a4a-9a8f-c2ea5aff42f3-198",
      "dcpUniqueKey": "abcd1234pqrs567890",
      "generatedOn": "2026-05-18T08:42:46.000Z",
      "productId": 1,
      "productModuleId": 1,
      "productModuleName": "Hybrid Workloads",
      "productName": "Enterprise Workloads",
      "quotaConsumed": 357,
      "quotaLimit": 357,
      "severity": "Critical",
      "state": "Active",
      "unit": "Count",
      "updatedOn": "2026-05-19T12:41:33.000Z"
    },
    {
      "accountName": "Example Customer",
      "alertId": 6340,
      "consumptionParameter": "Total Allocated Active Users",
      "customerGlobalId": "bde7f8c2-d063-4a4a-9a8f-c2ea5aff42f3-198",
      "dcpUniqueKey": "abcd1234pqrs567890",
      "generatedOn": "2026-05-20T10:00:00.000Z",
      "productId": 2,
      "productModuleId": 4,
      "productModuleName": "Google Workspace",
      "productName": "SaaS Apps and Endpoints",
      "quotaConsumed": 50,
      "quotaLimit": 100,
      "severity": "Warning",
      "state": "Active",
      "unit": "Count",
      "updatedOn": "2026-05-21T09:15:00.000Z"
    }
  ],
  "filters": {
    "pageSize": 100,
    "filterBy": [
      {
        "fieldName": "generatedOn",
        "value": "30",
        "operator": "GTE"
      }
    ]
  },
  "nextPageToken": "eyJwYWdlTnVtYmVyIjoyLCJwYWdlU2l6ZSI6NTAwLCAiZmlsdGVycyI6bnVsbH0="
}