{ "opencollection": "1.0.0", "info": { "name": "Grafana HTTP Access Quota API", "version": "11.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Quota", "type": "folder" }, "items": [ { "info": { "name": "Grafana Get User Quota", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.grafana.net/api/admin/users/:user_id/quotas", "params": [ { "name": "user_id", "value": "", "type": "path" } ] }, "docs": "This API operation retrieves the current quota limits and usage statistics for a specific user in Grafana. By making a GET request to the /admin/users/{user_id}/quotas endpoint with a valid user ID, administrators can view resource allocation details such as the maximum number of dashboards, data sources, or organizations that the specified user is allowed to create or use. The response provides both the configured quota limits and the current consumption for each quota type, enabling administra" }, { "info": { "name": "Grafana Update User Quota", "type": "http" }, "http": { "method": "PUT", "url": "https://{instance}.grafana.net/api/admin/users/:user_id/quotas/:quota_target", "params": [ { "name": "quota_target", "value": "", "type": "path" }, { "name": "user_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "This API operation allows Grafana administrators to update quota limits for a specific user by targeting a particular quota type. It uses a PUT request to modify the quota value associated with the specified user ID and quota target, which could be related to resources like dashboards, data sources, or other Grafana entities. The operation requires admin-level privileges and accepts the user ID and quota target as path parameters, along with the new quota value in the request body, enabling fine" }, { "info": { "name": "Grafana Get Current Org Quota", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.grafana.net/api/org/quotas" }, "docs": "This API operation retrieves the current resource quotas configured for the organization in Grafana. When called, it returns the quota limits that have been set for various resources such as the maximum number of users, dashboards, data sources, and API keys allowed within the organization. This is useful for administrators who need to monitor or verify the current quota settings to ensure they align with organizational policies and resource management requirements. The operation requires approp" }, { "info": { "name": "Grafana Get Org Quota", "type": "http" }, "http": { "method": "GET", "url": "https://{instance}.grafana.net/api/orgs/:org_id/quotas", "params": [ { "name": "org_id", "value": "", "type": "path" } ] }, "docs": "```\nRetrieves the current resource quota settings for a specific organization in Grafana identified by its organization ID. This endpoint returns quota limits that define resource constraints for the organization, such as maximum number of users, dashboards, data sources, and API keys allowed. The response provides visibility into the configured thresholds that govern resource allocation and help administrators manage and control organizational resource consumption within their Grafana instance." }, { "info": { "name": "Grafana Update Org Quota", "type": "http" }, "http": { "method": "PUT", "url": "https://{instance}.grafana.net/api/orgs/:org_id/quotas/:quota_target", "params": [ { "name": "quota_target", "value": "", "type": "path" }, { "name": "org_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "This API operation allows administrators to update a specific quota limit for an organization in Grafana by making a PUT request to the endpoint with the organization ID and quota target specified in the path. The quota target represents the type of resource being limited, such as users, dashboards, data sources, or API keys. The request body should contain the new quota limit value to be applied. This operation requires administrative privileges and is typically used for managing resource alloc" } ] } ], "bundled": true }