v1

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

View Quota Management Report

Returns quota limits and optional increment settings per MSP customer, product module, and consumption parameter

post/msp/reporting/v2/reports/mspServiceMonitoringQuotaManagement

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": []
  }
}

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",
      "consumptionParameter": "Total Allocated Active Users",
      "customerGlobalId": "bde7f8c2-d063-4a4a-9a8f-c2ea5aff42f3-198",
      "dcpUniqueKey": "abcd1234pqrs567890",
      "incrementBy": 11,
      "incrementFrequency": "Quarterly",
      "incrementTill": "2026-08-31T18:30:00.000Z",
      "productId": 2,
      "productModuleId": 4,
      "productModuleName": "Google Workspace",
      "productName": "SaaS Apps & Endpoints",
      "quota": 1,
      "unit": "Count",
      "upcomingIncrement": "2026-07-01T00:00:00.000Z"
    },
    {
      "accountName": "Example Customer",
      "consumptionParameter": "Frontend Source Storage",
      "customerGlobalId": "bde7f8c2-d063-4a4a-9a8f-c2ea5aff42f3-198",
      "dcpUniqueKey": "abcd1234pqrs567890",
      "incrementBy": 0.5,
      "incrementFrequency": "Monthly",
      "incrementTill": "2026-12-31T23:59:59.000Z",
      "productId": 1,
      "productModuleId": 1,
      "productModuleName": "Hybrid Workloads",
      "productName": "Enterprise Workloads",
      "quota": 100,
      "unit": "TB",
      "upcomingIncrement": "2026-06-15T00:00:00.000Z"
    }
  ],
  "filters": {
    "pageSize": 100,
    "filterBy": [
      {
        "fieldName": "accountName",
        "value": "Example Customer",
        "operator": "EQUAL"
      }
    ]
  },
  "lastSyncTimestamp": "2026-06-18T00:00:00.000Z",
  "nextPageToken": "eyJwYWdlTnVtYmVyIjoyLCJwYWdlU2l6ZSI6NTAwLCAiZmlsdGVycyI6bnVsbH0="
}