Grafana
Catalog 暂无描述。
认证方式
| 方式 | 底层类型 | 状态 | 说明 |
|---|---|---|---|
| API Key | api_key | available | — |
调用示例
import { createClient } from "@open-connector/sdk";const oc = createClient({ baseUrl: "https://api.openconnector.dev", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({ slug: "GRAFANA_ADD_DATA_SOURCE", connectedAccountId: "conn_...", arguments: { /* match this tool's input schema */ },});import Composio from "@composio/client";const composio = new Composio({ baseURL: "https://api.openconnector.dev/composio", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("GRAFANA_ADD_DATA_SOURCE", { connected_account_id: "conn_...", arguments: { /* match this tool's input schema */ },});oc tools execute GRAFANA_ADD_DATA_SOURCE --data '{ }'Tool 目录
可用 Tools
312 个可调用操作
Create a data source.GRAFANA_ADD_DATA_SOURCEBy defining `password` and `basicAuthPassword` under secureJsonData property Grafana encrypts them securely as an encrypted blob in the database. The response then lists the encrypted fields under secureJsonFields. If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:create`需要连接
By defining `password` and `basicAuthPassword` under secureJsonData property Grafana encrypts them securely as an encrypted blob in the database. The response then lists the encrypted fields under secureJsonFields. If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:create`
认证
需要 Connected AccountTags
Add invite.GRAFANA_ADD_ORG_INVITEAdd invite.需要连接
Add invite.
认证
需要 Connected AccountTags
Add a new user to the current organization.GRAFANA_ADD_ORG_USERAdds a global user to the current organization. If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users:add` with scope `users:*`.需要连接
Adds a global user to the current organization. If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users:add` with scope `users:*`.
认证
需要 Connected AccountTags
Add a new user to the current organization.GRAFANA_ADD_ORG_USER_TO_CURRENT_ORGAdds a global user to the current organization. If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users:add` with scope `users:*`.需要连接
Adds a global user to the current organization. If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users:add` with scope `users:*`.
认证
需要 Connected AccountTags
Add External Group.GRAFANA_ADD_TEAM_GROUP_APIAdd External Group.需要连接
Add External Group.
认证
需要 Connected AccountTags
Add Team Member.GRAFANA_ADD_TEAM_MEMBERAdd Team Member.需要连接
Add Team Member.
认证
需要 Connected AccountTags
Add team role.GRAFANA_ADD_TEAM_ROLEYou need to have a permission with action `teams.roles:add` and scope `permissions:type:delegate`.需要连接
You need to have a permission with action `teams.roles:add` and scope `permissions:type:delegate`.
认证
需要 Connected AccountTags
Add a user role assignment.GRAFANA_ADD_USER_ROLEAssign a role to a specific user. For bulk updates consider Set user role assignments. You need to have a permission with action `users.roles:add` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only assign roles which have same, or a subset of permissions which the user has. For example, if a user does not have required permissions for creating users, they won’t be able to assign a role which will allow to do that. This is done to prevent escalation of privileges.需要连接
Assign a role to a specific user. For bulk updates consider Set user role assignments. You need to have a permission with action `users.roles:add` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only assign roles which have same, or a subset of permissions which the user has. For example, if a user does not have required permissions for creating users, they won’t be able to assign a role which will allow to do that. This is done to prevent escalation of privileges.
认证
需要 Connected AccountTags
Create new user.GRAFANA_ADMIN_CREATE_USERIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users:create`. Note that OrgId is an optional parameter that can be used to assign a new user to a different organization when `auto_assign_org` is set to `true`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users:create`. Note that OrgId is an optional parameter that can be used to assign a new user to a different organization when `auto_assign_org` is set to `true`.
认证
需要 Connected AccountTags
Delete global User.GRAFANA_ADMIN_DELETE_USERIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users:delete` and scope `global.users:*`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users:delete` and scope `global.users:*`.
认证
需要 Connected AccountTags
Disable user.GRAFANA_ADMIN_DISABLE_USERIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users:disable` and scope `global.users:1` (userIDScope).需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users:disable` and scope `global.users:1` (userIDScope).
认证
需要 Connected AccountTags
Enable user.GRAFANA_ADMIN_ENABLE_USERIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users:enable` and scope `global.users:1` (userIDScope).需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users:enable` and scope `global.users:1` (userIDScope).
认证
需要 Connected AccountTags
Fetch settings.GRAFANA_ADMIN_GET_SETTINGSIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `settings:read` and scopes: `settings:*`, `settings:auth.saml:` and `settings:auth.saml:enabled` (property level).需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `settings:read` and scopes: `settings:*`, `settings:auth.saml:` and `settings:auth.saml:enabled` (property level).
认证
需要 Connected AccountTags
Fetch Grafana Stats.GRAFANA_ADMIN_GET_STATSOnly works with Basic Authentication (username and password). See introduction for an explanation. If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `server:stats:read`.需要连接
Only works with Basic Authentication (username and password). See introduction for an explanation. If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `server:stats:read`.
认证
需要 Connected AccountTags
Return a list of all auth tokens (devices) that the user currently have logged in from.GRAFANA_ADMIN_GET_USER_AUTH_TOKENSIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.authtoken:list` and scope `global.users:*`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.authtoken:list` and scope `global.users:*`.
认证
需要 Connected AccountTags
Logout user revokes all auth tokens (devices) for the user. User of issued auth tokens (devices) will no longer be logged in and will be required to authenticate again upon next activity.GRAFANA_ADMIN_LOGOUT_USERIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.logout` and scope `global.users:*`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.logout` and scope `global.users:*`.
认证
需要 Connected AccountTags
You need to have a permission with action `provisioning:reload` with scope `provisioners:accesscontrol`.GRAFANA_ADMIN_PROVISIONING_RELOAD_ACCESS_CONTROLYou need to have a permission with action `provisioning:reload` with scope `provisioners:accesscontrol`.需要连接
You need to have a permission with action `provisioning:reload` with scope `provisioners:accesscontrol`.
认证
需要 Connected AccountTags
Reload dashboard provisioning configurations.GRAFANA_ADMIN_PROVISIONING_RELOAD_DASHBOARDSReloads the provisioning config files for dashboards again. It won’t return until the new provisioned entities are already stored in the database. In case of dashboards, it will stop polling for changes in dashboard files and then restart it with new configurations after returning. If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `provisioning:reload` and scope `provisioners:dashboards`.需要连接
Reloads the provisioning config files for dashboards again. It won’t return until the new provisioned entities are already stored in the database. In case of dashboards, it will stop polling for changes in dashboard files and then restart it with new configurations after returning. If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `provisioning:reload` and scope `provisioners:dashboards`.
认证
需要 Connected AccountTags
Reload datasource provisioning configurations.GRAFANA_ADMIN_PROVISIONING_RELOAD_DATASOURCESReloads the provisioning config files for datasources again. It won’t return until the new provisioned entities are already stored in the database. In case of dashboards, it will stop polling for changes in dashboard files and then restart it with new configurations after returning. If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `provisioning:reload` and scope `provisioners:datasources`.需要连接
Reloads the provisioning config files for datasources again. It won’t return until the new provisioned entities are already stored in the database. In case of dashboards, it will stop polling for changes in dashboard files and then restart it with new configurations after returning. If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `provisioning:reload` and scope `provisioners:datasources`.
认证
需要 Connected AccountTags
Reload plugin provisioning configurations.GRAFANA_ADMIN_PROVISIONING_RELOAD_PLUGINSReloads the provisioning config files for plugins again. It won’t return until the new provisioned entities are already stored in the database. In case of dashboards, it will stop polling for changes in dashboard files and then restart it with new configurations after returning. If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `provisioning:reload` and scope `provisioners:plugin`.需要连接
Reloads the provisioning config files for plugins again. It won’t return until the new provisioned entities are already stored in the database. In case of dashboards, it will stop polling for changes in dashboard files and then restart it with new configurations after returning. If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `provisioning:reload` and scope `provisioners:plugin`.
认证
需要 Connected AccountTags
Revoke auth token for user.GRAFANA_ADMIN_REVOKE_USER_AUTH_TOKENRevokes the given auth token (device) for the user. User of issued auth token (device) will no longer be logged in and will be required to authenticate again upon next activity. If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.authtoken:update` and scope `global.users:*`.需要连接
Revokes the given auth token (device) for the user. User of issued auth token (device) will no longer be logged in and will be required to authenticate again upon next activity. If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.authtoken:update` and scope `global.users:*`.
认证
需要 Connected AccountTags
Set password for user.GRAFANA_ADMIN_UPDATE_USER_PASSWORDIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.password:update` and scope `global.users:*`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.password:update` and scope `global.users:*`.
认证
需要 Connected AccountTags
Set permissions for user.GRAFANA_ADMIN_UPDATE_USER_PERMISSIONSOnly works with Basic Authentication (username and password). See introduction for an explanation. If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.permissions:update` and scope `global.users:*`.需要连接
Only works with Basic Authentication (username and password). See introduction for an explanation. If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.permissions:update` and scope `global.users:*`.
认证
需要 Connected AccountTags
Fetch data source resources.GRAFANA_CALL_DATASOURCE_RESOURCE_WITH_UIDFetch data source resources.需要连接
Fetch data source resources.
认证
需要 Connected AccountTags
Cancel a snapshot, wherever it is in its processing chain.GRAFANA_CANCEL_SNAPSHOTTODO: Implement需要连接
TODO: Implement
认证
需要 Connected AccountTags
Change Password.GRAFANA_CHANGE_USER_PASSWORDChanges the password for the user.需要连接
Changes the password for the user.
认证
需要 Connected AccountTags
Sends a health check request to the plugin datasource identified by the UID.GRAFANA_CHECK_DATASOURCE_HEALTH_WITH_UIDSends a health check request to the plugin datasource identified by the UID.需要连接
Sends a health check request to the plugin datasource identified by the UID.
认证
需要 Connected AccountTags
CleanDataSourceCacheGRAFANA_CLEAN_DATA_SOURCE_CACHEclean cache for a single data source需要连接
clean cache for a single data source
认证
需要 Connected AccountTags
Create gcom access token.GRAFANA_CREATE_CLOUD_MIGRATION_TOKENCreate gcom access token.需要连接
Create gcom access token.
认证
需要 Connected AccountTags
Add correlation.GRAFANA_CREATE_CORRELATIONAdd correlation.需要连接
Add correlation.
认证
需要 Connected AccountTags
When creating a snapshot using the API, you have to provide the full dashboard payload including the snapshot data. This endpoint is designed for the Grafana UI.GRAFANA_CREATE_DASHBOARD_SNAPSHOTSnapshot public mode should be enabled or authentication is required.需要连接
Snapshot public mode should be enabled or authentication is required.
认证
需要 Connected AccountTags
Create folder.GRAFANA_CREATE_FOLDERIf nested folders are enabled then it additionally expects the parent folder UID. Use: /apis/folder.grafana.app/v1/namespaces/{ns}/folders/{folder_uid}需要连接
If nested folders are enabled then it additionally expects the parent folder UID. Use: /apis/folder.grafana.app/v1/namespaces/{ns}/folders/{folder_uid}
认证
需要 Connected AccountTags
Create library element.GRAFANA_CREATE_LIBRARY_ELEMENTCreates a new library element.需要连接
Creates a new library element.
认证
需要 Connected AccountTags
Create Organization.GRAFANA_CREATE_ORGOnly works if [users.allow_org_create](https://grafana.com/docs/grafana/latest/administration/configuration/#allow_org_create) is set.需要连接
Only works if [users.allow_org_create](https://grafana.com/docs/grafana/latest/administration/configuration/#allow_org_create) is set.
认证
需要 Connected AccountTags
Create playlist.GRAFANA_CREATE_PLAYLISTPlease refer to [new API](?api=playlist.grafana.app-v1).需要连接
Please refer to [new API](?api=playlist.grafana.app-v1).
认证
需要 Connected AccountTags
CreatePublicDashboardGRAFANA_CREATE_PUBLIC_DASHBOARDCreate public dashboard for a dashboard需要连接
Create public dashboard for a dashboard
认证
需要 Connected AccountTags
Add query to query history.GRAFANA_CREATE_QUERYAdds new query to query history.需要连接
Adds new query to query history.
认证
需要 Connected AccountTags
Create a recording rule that is then registered and started.GRAFANA_CREATE_RECORDING_RULECreate a recording rule that is then registered and started.需要连接
Create a recording rule that is then registered and started.
认证
需要 Connected AccountTags
Create a remote write target.GRAFANA_CREATE_RECORDING_RULE_WRITE_TARGETIt returns a 422 if there is not an existing prometheus data source configured.需要连接
It returns a 422 if there is not an existing prometheus data source configured.
认证
需要 Connected AccountTags
Create a report.GRAFANA_CREATE_REPORTAvailable to org admins only and with a valid license. You need to have a permission with action `reports.admin:create`.需要连接
Available to org admins only and with a valid license. You need to have a permission with action `reports.admin:create`.
认证
需要 Connected AccountTags
Create a new custom role.GRAFANA_CREATE_ROLECreates a new custom role and maps given permissions to that role. Note that roles with the same prefix as Fixed Roles can’t be created. You need to have a permission with action `roles:write` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only create custom roles with the same, or a subset of permissions which the user has. For example, if a user does not have required permissions for creating users, they won’t be able to create a custom role which allows to do that. This is done to prevent escalation of privileges.需要连接
Creates a new custom role and maps given permissions to that role. Note that roles with the same prefix as Fixed Roles can’t be created. You need to have a permission with action `roles:write` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only create custom roles with the same, or a subset of permissions which the user has. For example, if a user does not have required permissions for creating users, they won’t be able to create a custom role which allows to do that. This is done to prevent escalation of privileges.
认证
需要 Connected AccountTags
Create service accountGRAFANA_CREATE_SERVICE_ACCOUNTRequired permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:write` scope: `serviceaccounts:*` Requires basic authentication and that the authenticated user is a Grafana Admin.需要连接
Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:write` scope: `serviceaccounts:*` Requires basic authentication and that the authenticated user is a Grafana Admin.
认证
需要 Connected AccountTags
Create a migration session.GRAFANA_CREATE_SESSIONCreate a migration session.需要连接
Create a migration session.
认证
需要 Connected AccountTags
Trigger the creation of an instance snapshot associated with the provided session.GRAFANA_CREATE_SNAPSHOTIf the snapshot initialization is successful, the snapshot uid is returned.需要连接
If the snapshot initialization is successful, the snapshot uid is returned.
认证
需要 Connected AccountTags
Add Team.GRAFANA_CREATE_TEAMAdd Team.需要连接
Add Team.
认证
需要 Connected AccountTags
CreateNewToken adds a token to a service accountGRAFANA_CREATE_TOKENRequired permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:write` scope: `serviceaccounts:id:1` (single service account)需要连接
Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:write` scope: `serviceaccounts:id:1` (single service account)
认证
需要 Connected AccountTags
Data source proxy DELETE calls.GRAFANA_DATASOURCE_PROXY_DELETEBY_UIDCALLSProxies all calls to the actual data source.需要连接
Proxies all calls to the actual data source.
认证
需要 Connected AccountTags
Data source proxy GET calls.GRAFANA_DATASOURCE_PROXY_GETBY_UIDCALLSProxies all calls to the actual data source.需要连接
Proxies all calls to the actual data source.
认证
需要 Connected AccountTags
Data source proxy POST calls.GRAFANA_DATASOURCE_PROXY_POSTBY_UIDCALLSProxies all calls to the actual data source. The data source should support POST methods for the specific path and role as defined需要连接
Proxies all calls to the actual data source. The data source should support POST methods for the specific path and role as defined
认证
需要 Connected AccountTags
Delete Annotation By ID.GRAFANA_DELETE_ANNOTATION_BY_IDDeletes the annotation that matches the specified ID.需要连接
Deletes the annotation that matches the specified ID.
认证
需要 Connected AccountTags
Deletes a cloud migration token.GRAFANA_DELETE_CLOUD_MIGRATION_TOKENDeletes a cloud migration token.需要连接
Deletes a cloud migration token.
认证
需要 Connected AccountTags
Delete a correlation.GRAFANA_DELETE_CORRELATIONDelete a correlation.需要连接
Delete a correlation.
认证
需要 Connected AccountTags
Delete dashboard by uid.GRAFANA_DELETE_DASHBOARD_BY_UIDWill delete the dashboard given the specified unique identifier (uid). Use: /apis/dashboard.grafana.app/v1/namespaces/{ns}/dashboards/{uid}需要连接
Will delete the dashboard given the specified unique identifier (uid). Use: /apis/dashboard.grafana.app/v1/namespaces/{ns}/dashboards/{uid}
认证
需要 Connected AccountTags
Delete Snapshot by Key.GRAFANA_DELETE_DASHBOARD_SNAPSHOTDelete Snapshot by Key.需要连接
Delete Snapshot by Key.
认证
需要 Connected AccountTags
Delete Snapshot by deleteKey.GRAFANA_DELETE_DASHBOARD_SNAPSHOT_BY_DELETE_KEYSnapshot public mode should be enabled or authentication is required.需要连接
Snapshot public mode should be enabled or authentication is required.
认证
需要 Connected AccountTags
Delete an existing data source by name. This function will be removed in the future.GRAFANA_DELETE_DATA_SOURCE_BY_NAMEIf you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:delete` and scopes: `datasources:*`, `datasources:name:*` and `datasources:name:test_datasource` (single data source).需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:delete` and scopes: `datasources:*`, `datasources:name:*` and `datasources:name:test_datasource` (single data source).
认证
需要 Connected AccountTags
Delete an existing data source by UID.GRAFANA_DELETE_DATA_SOURCE_BY_UIDIf you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:delete` and scopes: `datasources:*`, `datasources:uid:*` and `datasources:uid:kLtEtcRGk` (single data source).需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:delete` and scopes: `datasources:*`, `datasources:uid:*` and `datasources:uid:kLtEtcRGk` (single data source).
认证
需要 Connected AccountTags
Delete folder.GRAFANA_DELETE_FOLDERDeletes an existing folder identified by UID along with all dashboards (and their alerts) stored in the folder. This operation cannot be reverted. If nested folders are enabled then it also deletes all the subfolders. Use: /apis/folder.grafana.app/v1/namespaces/{ns}/folders/{folder_uid}需要连接
Deletes an existing folder identified by UID along with all dashboards (and their alerts) stored in the folder. This operation cannot be reverted. If nested folders are enabled then it also deletes all the subfolders. Use: /apis/folder.grafana.app/v1/namespaces/{ns}/folders/{folder_uid}
认证
需要 Connected AccountTags
Delete library element.GRAFANA_DELETE_LIBRARY_ELEMENT_BY_UIDDeletes an existing library element as specified by the UID. This operation cannot be reverted. You cannot delete a library element that is connected. This operation cannot be reverted.需要连接
Deletes an existing library element as specified by the UID. This operation cannot be reverted. You cannot delete a library element that is connected. This operation cannot be reverted.
认证
需要 Connected AccountTags
Remove license from database.GRAFANA_DELETE_LICENSE_TOKENRemoves the license stored in the Grafana database. Available in Grafana Enterprise v7.4+. You need to have a permission with action `licensing:delete`.需要连接
Removes the license stored in the Grafana database. Available in Grafana Enterprise v7.4+. You need to have a permission with action `licensing:delete`.
认证
需要 Connected AccountTags
Delete Organization.GRAFANA_DELETE_ORG_BY_IDDelete Organization.需要连接
Delete Organization.
认证
需要 Connected AccountTags
Delete playlist.GRAFANA_DELETE_PLAYLISTPlease refer to [new API](?api=playlist.grafana.app-v1).需要连接
Please refer to [new API](?api=playlist.grafana.app-v1).
认证
需要 Connected AccountTags
DeletePublicDashboardGRAFANA_DELETE_PUBLIC_DASHBOARDDelete public dashboard for a dashboard需要连接
Delete public dashboard for a dashboard
认证
需要 Connected AccountTags
Delete query in query history.GRAFANA_DELETE_QUERYDeletes an existing query in query history as specified by the UID. This operation cannot be reverted.需要连接
Deletes an existing query in query history as specified by the UID. This operation cannot be reverted.
认证
需要 Connected AccountTags
Delete removes the rule from the registry and stops it.GRAFANA_DELETE_RECORDING_RULEDelete removes the rule from the registry and stops it.需要连接
Delete removes the rule from the registry and stops it.
认证
需要 Connected AccountTags
Delete the remote write target.GRAFANA_DELETE_RECORDING_RULE_WRITE_TARGETDelete the remote write target.需要连接
Delete the remote write target.
认证
需要 Connected AccountTags
Delete a report.GRAFANA_DELETE_REPORTAvailable to org admins only and with a valid or expired license. You need to have a permission with action `reports.delete` with scope `reports:id:<report ID>`. Requesting reports using the internal id will stop workgin in the future Use the reporting apiserver to manage reports. See: /apis/reporting.grafana.app/需要连接
Available to org admins only and with a valid or expired license. You need to have a permission with action `reports.delete` with scope `reports:id:<report ID>`. Requesting reports using the internal id will stop workgin in the future Use the reporting apiserver to manage reports. See: /apis/reporting.grafana.app/
认证
需要 Connected AccountTags
Delete a custom role.GRAFANA_DELETE_ROLEDelete a role with the given UID, and it’s permissions. If the role is assigned to a built-in role, the deletion operation will fail, unless force query param is set to true, and in that case all assignments will also be deleted. You need to have a permission with action `roles:delete` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only delete a custom role with the same, or a subset of permissions which the user has. For example, if a user does not have required permissions for creating users, they won’t be able to delete a custom role which allows to do that.需要连接
Delete a role with the given UID, and it’s permissions. If the role is assigned to a built-in role, the deletion operation will fail, unless force query param is set to true, and in that case all assignments will also be deleted. You need to have a permission with action `roles:delete` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only delete a custom role with the same, or a subset of permissions which the user has. For example, if a user does not have required permissions for creating users, they won’t be able to delete a custom role which allows to do that.
认证
需要 Connected AccountTags
Delete service accountGRAFANA_DELETE_SERVICE_ACCOUNTRequired permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:delete` scope: `serviceaccounts:id:1` (single service account)需要连接
Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:delete` scope: `serviceaccounts:id:1` (single service account)
认证
需要 Connected AccountTags
Delete a migration session by its uid.GRAFANA_DELETE_SESSIONDelete a migration session by its uid.需要连接
Delete a migration session by its uid.
认证
需要 Connected AccountTags
Delete Team By ID.GRAFANA_DELETE_TEAM_BY_IDDelete Team By ID.需要连接
Delete Team By ID.
认证
需要 Connected AccountTags
DeleteToken deletes service account tokensGRAFANA_DELETE_TOKENRequired permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:write` scope: `serviceaccounts:id:1` (single service account) Requires basic authentication and that the authenticated user is a Grafana Admin.需要连接
Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:write` scope: `serviceaccounts:id:1` (single service account) Requires basic authentication and that the authenticated user is a Grafana Admin.
认证
需要 Connected AccountTags
DisableDataSourceCacheGRAFANA_DISABLE_DATA_SOURCE_CACHEdisable cache for a single data source需要连接
disable cache for a single data source
认证
需要 Connected AccountTags
EnableDataSourceCacheGRAFANA_ENABLE_DATA_SOURCE_CACHEenable cache for a single data source需要连接
enable cache for a single data source
认证
需要 Connected AccountTags
Get status.GRAFANA_GET_ACCESS_CONTROL_STATUSReturns an indicator to check if fine-grained access control is enabled or not. You need to have a permission with action `status:accesscontrol` and scope `services:accesscontrol`.需要连接
Returns an indicator to check if fine-grained access control is enabled or not. You need to have a permission with action `status:accesscontrol` and scope `services:accesscontrol`.
认证
需要 Connected AccountTags
Get Annotation by ID.GRAFANA_GET_ANNOTATION_BY_IDGet Annotation by ID.需要连接
Get Annotation by ID.
认证
需要 Connected AccountTags
Find Annotations Tags.GRAFANA_GET_ANNOTATION_TAGSFind all the event tags created in the annotations.需要连接
Find all the event tags created in the annotations.
认证
需要 Connected AccountTags
Find Annotations.GRAFANA_GET_ANNOTATIONSStarting in Grafana v6.4 regions annotations are now returned in one entity that now includes the timeEnd property.需要连接
Starting in Grafana v6.4 regions annotations are now returned in one entity that now includes the timeEnd property.
认证
需要 Connected AccountTags
Fetch the cloud migration token if it exists.GRAFANA_GET_CLOUD_MIGRATION_TOKENFetch the cloud migration token if it exists.需要连接
Fetch the cloud migration token if it exists.
认证
需要 Connected AccountTags
Gets a correlation.GRAFANA_GET_CORRELATIONGets a correlation.需要连接
Gets a correlation.
认证
需要 Connected AccountTags
Gets all correlations.GRAFANA_GET_CORRELATIONSGets all correlations.需要连接
Gets all correlations.
认证
需要 Connected AccountTags
Gets all correlations originating from the given data source.GRAFANA_GET_CORRELATIONS_BY_SOURCE_UIDGets all correlations originating from the given data source.需要连接
Gets all correlations originating from the given data source.
认证
需要 Connected AccountTags
Get current Organization.GRAFANA_GET_CURRENT_ORGGet current Organization.需要连接
Get current Organization.
认证
需要 Connected AccountTags
Fetch Organization quota.GRAFANA_GET_CURRENT_ORG_QUOTAIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `orgs.quotas:read` and scope `org:id:1` (orgIDScope).需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `orgs.quotas:read` and scope `org:id:1` (orgIDScope).
认证
需要 Connected AccountTags
Get custom permissions report in CSV format.GRAFANA_GET_CUSTOM_PERMISSIONS_CSVYou need to have a permission with action `licensing.reports:read`.需要连接
You need to have a permission with action `licensing.reports:read`.
认证
需要 Connected AccountTags
Get custom permissions report.GRAFANA_GET_CUSTOM_PERMISSIONS_REPORTYou need to have a permission with action `licensing.reports:read`.需要连接
You need to have a permission with action `licensing.reports:read`.
认证
需要 Connected AccountTags
Get dashboard by uid.GRAFANA_GET_DASHBOARD_BY_UIDOptional query parameter `apiVersion` selects the Kubernetes API version used to load the dashboard first (for example `v1beta1`). If that request fails, the default version is used instead. When omitted, only the default is used. Will return the dashboard given the dashboard unique identifier (uid). Use: /apis/dashboard.grafana.app/v1/namespaces/{ns}/dashboards/{uid}需要连接
Optional query parameter `apiVersion` selects the Kubernetes API version used to load the dashboard first (for example `v1beta1`). If that request fails, the default version is used instead. When omitted, only the default is used. Will return the dashboard given the dashboard unique identifier (uid). Use: /apis/dashboard.grafana.app/v1/namespaces/{ns}/dashboards/{uid}
认证
需要 Connected AccountTags
Gets all existing permissions for the given dashboard.GRAFANA_GET_DASHBOARD_PERMISSIONS_LIST_BY_UIDUse: /apis/dashboard.grafana.app/v1/namespaces/{ns}/dashboards/{uid}/access需要连接
Use: /apis/dashboard.grafana.app/v1/namespaces/{ns}/dashboards/{uid}/access
认证
需要 Connected AccountTags
Get Snapshot by Key.GRAFANA_GET_DASHBOARD_SNAPSHOTGet Snapshot by Key.需要连接
Get Snapshot by Key.
认证
需要 Connected AccountTags
Get all dashboards tags of an organization.GRAFANA_GET_DASHBOARD_TAGSGet all dashboards tags of an organization.需要连接
Get all dashboards tags of an organization.
认证
需要 Connected AccountTags
Get a specific dashboard version using UID.GRAFANA_GET_DASHBOARD_VERSION_BY_UIDGet a specific dashboard version using UID.需要连接
Get a specific dashboard version using UID.
认证
需要 Connected AccountTags
Gets all existing versions for the dashboard using UID.GRAFANA_GET_DASHBOARD_VERSIONS_BY_UIDGets all existing versions for the dashboard using UID.需要连接
Gets all existing versions for the dashboard using UID.
认证
需要 Connected AccountTags
Get a single data source by Name. This function will be removed in the future.GRAFANA_GET_DATA_SOURCE_BY_NAMEIf you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:read` and scopes: `datasources:*`, `datasources:name:*` and `datasources:name:test_datasource` (single data source).需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:read` and scopes: `datasources:*`, `datasources:name:*` and `datasources:name:test_datasource` (single data source).
认证
需要 Connected AccountTags
Get a single data source by UID.GRAFANA_GET_DATA_SOURCE_BY_UIDIf you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:read` and scopes: `datasources:*`, `datasources:uid:*` and `datasources:uid:kLtEtcRGk` (single data source).需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:read` and scopes: `datasources:*`, `datasources:uid:*` and `datasources:uid:kLtEtcRGk` (single data source).
认证
需要 Connected AccountTags
GetDataSourceCacheConfigGRAFANA_GET_DATA_SOURCE_CACHE_CONFIGget cache config for a single data source需要连接
get cache config for a single data source
认证
需要 Connected AccountTags
Get data source Id by Name. This function will be removed in the future.GRAFANA_GET_DATA_SOURCE_ID_BY_NAMEIf you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:read` and scopes: `datasources:*`, `datasources:name:*` and `datasources:name:test_datasource` (single data source).需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:read` and scopes: `datasources:*`, `datasources:name:*` and `datasources:name:test_datasource` (single data source).
认证
需要 Connected AccountTags
Get all data sources.GRAFANA_GET_DATA_SOURCESIf you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:read` and scope: `datasources:*`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:read` and scope: `datasources:*`.
认证
需要 Connected AccountTags
Get folder by uid.GRAFANA_GET_FOLDER_BY_UIDUse: /apis/folder.grafana.app/v1/namespaces/{ns}/folders/{folder_uid}需要连接
Use: /apis/folder.grafana.app/v1/namespaces/{ns}/folders/{folder_uid}
认证
需要 Connected AccountTags
Gets the count of each descendant of a folder by kind. The folder is identified by UID.GRAFANA_GET_FOLDER_DESCENDANT_COUNTSUse: /apis/folder.grafana.app/v1/namespaces/{ns}/folders/{folder_uid}需要连接
Use: /apis/folder.grafana.app/v1/namespaces/{ns}/folders/{folder_uid}
认证
需要 Connected AccountTags
Gets all existing permissions for the folder with the given `uid`.GRAFANA_GET_FOLDER_PERMISSION_LISTGets all existing permissions for the folder with the given `uid`.需要连接
Gets all existing permissions for the folder with the given `uid`.
认证
需要 Connected AccountTags
Get all folders.GRAFANA_GET_FOLDERSIt returns all folders that the authenticated user has permission to view. If nested folders are enabled, it expects an additional query parameter with the parent folder UID and returns the immediate subfolders that the authenticated user has permission to view. If the parameter is not supplied then it returns immediate subfolders under the root that the authenticated user has permission to view. Use: /apis/folder.grafana.app/v1/namespaces/{ns}/folders需要连接
It returns all folders that the authenticated user has permission to view. If nested folders are enabled, it expects an additional query parameter with the parent folder UID and returns the immediate subfolders that the authenticated user has permission to view. If the parameter is not supplied then it returns immediate subfolders under the root that the authenticated user has permission to view. Use: /apis/folder.grafana.app/v1/namespaces/{ns}/folders
认证
需要 Connected AccountTags
GetHealthGRAFANA_GET_HEALTHapiHealthHandler will return ok if Grafana's web server is running and it can access the database. If the database cannot be accessed it will return http status code 503.需要连接
apiHealthHandler will return ok if Grafana's web server is running and it can access the database. If the database cannot be accessed it will return http status code 503.
认证
需要 Connected AccountTags
GetHomeDashboardGRAFANA_GET_HOME_DASHBOARDNOTE: the home dashboard is configured in preferences. This API will be removed in G13需要连接
NOTE: the home dashboard is configured in preferences. This API will be removed in G13
认证
需要 Connected AccountTags
Attempts to connect to all the configured LDAP servers and returns information on whenever they're available or not.GRAFANA_GET_LDAPSTATUSIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `ldap.status:read`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `ldap.status:read`.
认证
需要 Connected AccountTags
Get library element by name.GRAFANA_GET_LIBRARY_ELEMENT_BY_NAMEReturns a library element with the given name.需要连接
Returns a library element with the given name.
认证
需要 Connected AccountTags
Get library element by UID.GRAFANA_GET_LIBRARY_ELEMENT_BY_UIDReturns a library element with the given UID.需要连接
Returns a library element with the given UID.
认证
需要 Connected AccountTags
Get library element connections.GRAFANA_GET_LIBRARY_ELEMENT_CONNECTIONSReturns a list of connections for a library element based on the UID specified.需要连接
Returns a list of connections for a library element based on the UID specified.
认证
需要 Connected AccountTags
Get all library elements.GRAFANA_GET_LIBRARY_ELEMENTSReturns a list of all library elements the authenticated user has permission to view. Use the `perPage` query parameter to control the maximum number of library elements returned; the default limit is `100`. You can also use the `page` query parameter to fetch library elements from any page other than the first one.需要连接
Returns a list of all library elements the authenticated user has permission to view. Use the `perPage` query parameter to control the maximum number of library elements returned; the default limit is `100`. You can also use the `page` query parameter to fetch library elements from any page other than the first one.
认证
需要 Connected AccountTags
Get license token.GRAFANA_GET_LICENSE_TOKENYou need to have a permission with action `licensing:read`.需要连接
You need to have a permission with action `licensing:read`.
认证
需要 Connected AccountTags
It exposes the SP (Grafana's) metadata for the IdP's consumption.GRAFANA_GET_METADATAIt exposes the SP (Grafana's) metadata for the IdP's consumption.需要连接
It exposes the SP (Grafana's) metadata for the IdP's consumption.
认证
需要 Connected AccountTags
Get Organization by ID.GRAFANA_GET_ORG_BY_IDGet Organization by ID.需要连接
Get Organization by ID.
认证
需要 Connected AccountTags
Get Organization by Name.GRAFANA_GET_ORG_BY_NAMEGet Organization by Name.需要连接
Get Organization by Name.
认证
需要 Connected AccountTags
Get Current Org Prefs.GRAFANA_GET_ORG_PREFERENCESUse /apis/preferences.grafana.app/v1/namespaces/{namespace}/preferences/namespace需要连接
Use /apis/preferences.grafana.app/v1/namespaces/{namespace}/preferences/namespace
认证
需要 Connected AccountTags
Fetch Organization quota.GRAFANA_GET_ORG_QUOTAIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `orgs.quotas:read` and scope `org:id:1` (orgIDScope).需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `orgs.quotas:read` and scope `org:id:1` (orgIDScope).
认证
需要 Connected AccountTags
Get Users in Organization.GRAFANA_GET_ORG_USERSIf you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users:read` with scope `users:*`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users:read` with scope `users:*`.
认证
需要 Connected AccountTags
Get all users within the current organization.GRAFANA_GET_ORG_USERS_FOR_CURRENT_ORGReturns all org users within the current organization. Accessible to users with org admin role. If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users:read` with scope `users:*`.需要连接
Returns all org users within the current organization. Accessible to users with org admin role. If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users:read` with scope `users:*`.
认证
需要 Connected AccountTags
Get all users within the current organization (lookup)GRAFANA_GET_ORG_USERS_FOR_CURRENT_ORG_LOOKUPReturns all org users within the current organization, but with less detailed information. Accessible to users with org admin role, admin in any folder or admin of any team. Mainly used by Grafana UI for providing list of users when adding team members and when editing folder/dashboard permissions.需要连接
Returns all org users within the current organization, but with less detailed information. Accessible to users with org admin role, admin in any folder or admin of any team. Mainly used by Grafana UI for providing list of users when adding team members and when editing folder/dashboard permissions.
认证
需要 Connected AccountTags
Get pending invites.GRAFANA_GET_PENDING_ORG_INVITESGet pending invites.需要连接
Get pending invites.
认证
需要 Connected AccountTags
Get playlist.GRAFANA_GET_PLAYLISTPlease refer to [new API](?api=playlist.grafana.app-v1).需要连接
Please refer to [new API](?api=playlist.grafana.app-v1).
认证
需要 Connected AccountTags
Get playlist items.GRAFANA_GET_PLAYLIST_ITEMSPlease refer to [new API](?api=playlist.grafana.app-v1) instead (items are included in the playlist spec).需要连接
Please refer to [new API](?api=playlist.grafana.app-v1) instead (items are included in the playlist spec).
认证
需要 Connected AccountTags
Get an SSO Settings entry by KeyGRAFANA_GET_PROVIDER_SETTINGSYou need to have a permission with action `settings:read` with scope `settings:auth.<provider>:*`.需要连接
You need to have a permission with action `settings:read` with scope `settings:auth.<provider>:*`.
认证
需要 Connected AccountTags
GetPublicAnnotationsGRAFANA_GET_PUBLIC_ANNOTATIONSGet annotations for a public dashboard需要连接
Get annotations for a public dashboard
认证
需要 Connected AccountTags
GetPublicDashboardGRAFANA_GET_PUBLIC_DASHBOARDGet public dashboard by dashboardUid需要连接
Get public dashboard by dashboardUid
认证
需要 Connected AccountTags
Return the prometheus remote write target.GRAFANA_GET_RECORDING_RULE_WRITE_TARGETReturn the prometheus remote write target.需要连接
Return the prometheus remote write target.
认证
需要 Connected AccountTags
Get a report.GRAFANA_GET_REPORTAvailable to org admins only and with a valid or expired license. You need to have a permission with action `reports:read` with scope `reports:id:<report ID>`. Requesting reports using the internal id will stop workgin in the future Use the reporting apiserver to manage reports. See: /apis/reporting.grafana.app/需要连接
Available to org admins only and with a valid or expired license. You need to have a permission with action `reports:read` with scope `reports:id:<report ID>`. Requesting reports using the internal id will stop workgin in the future Use the reporting apiserver to manage reports. See: /apis/reporting.grafana.app/
认证
需要 Connected AccountTags
Get report settings.GRAFANA_GET_REPORT_SETTINGSAvailable to org admins only and with a valid or expired license. You need to have a permission with action `reports.settings:read`x.需要连接
Available to org admins only and with a valid or expired license. You need to have a permission with action `reports.settings:read`x.
认证
需要 Connected AccountTags
List reports.GRAFANA_GET_REPORTSAvailable to org admins only and with a valid or expired license. You need to have a permission with action `reports:read` with scope `reports:*`.需要连接
Available to org admins only and with a valid or expired license. You need to have a permission with action `reports:read` with scope `reports:*`.
认证
需要 Connected AccountTags
List reports by dashboard uid.GRAFANA_GET_REPORTS_BY_DASHBOARD_UIDAvailable to org admins only and with a valid or expired license. You need to have a permission with action `reports:read` with scope `reports:*`.需要连接
Available to org admins only and with a valid or expired license. You need to have a permission with action `reports:read` with scope `reports:*`.
认证
需要 Connected AccountTags
Get the resource dependencies graph for the current set of migratable resources.GRAFANA_GET_RESOURCE_DEPENDENCIESGet the resource dependencies graph for the current set of migratable resources.需要连接
Get the resource dependencies graph for the current set of migratable resources.
认证
需要 Connected AccountTags
Get a description of a resource's access control properties.GRAFANA_GET_RESOURCE_DESCRIPTIONGet a description of a resource's access control properties.需要连接
Get a description of a resource's access control properties.
认证
需要 Connected AccountTags
Get permissions for a resource.GRAFANA_GET_RESOURCE_PERMISSIONSGet permissions for a resource.需要连接
Get permissions for a resource.
认证
需要 Connected AccountTags
Get a role.GRAFANA_GET_ROLEGet a role for the given UID. You need to have a permission with action `roles:read` and scope `roles:*`.需要连接
Get a role for the given UID. You need to have a permission with action `roles:read` and scope `roles:*`.
认证
需要 Connected AccountTags
Get role assignments.GRAFANA_GET_ROLE_ASSIGNMENTSGet role assignments for the role with the given UID. Does not include role assignments mapped through group attribute sync. You need to have a permission with action `teams.roles:list` and scope `teams:id:*` and `users.roles:list` and scope `users:id:*`.需要连接
Get role assignments for the role with the given UID. Does not include role assignments mapped through group attribute sync. You need to have a permission with action `teams.roles:list` and scope `teams:id:*` and `users.roles:list` and scope `users:id:*`.
认证
需要 Connected AccountTags
GetLogout initiates single logout process.GRAFANA_GET_SAMLLOGOUTGetLogout initiates single logout process.需要连接
GetLogout initiates single logout process.
认证
需要 Connected AccountTags
Get a cloud migration session by its uid.GRAFANA_GET_SESSIONGet a cloud migration session by its uid.需要连接
Get a cloud migration session by its uid.
认证
需要 Connected AccountTags
Get a list of all cloud migration sessions that have been created.GRAFANA_GET_SESSION_LISTGet a list of all cloud migration sessions that have been created.需要连接
Get a list of all cloud migration sessions that have been created.
认证
需要 Connected AccountTags
Get custom branding report image.GRAFANA_GET_SETTINGS_IMAGEAvailable to org admins only and with a valid or expired license. You need to have a permission with action `reports.settings:read`.需要连接
Available to org admins only and with a valid or expired license. You need to have a permission with action `reports.settings:read`.
认证
需要 Connected AccountTags
Get a list of snapshots for a session.GRAFANA_GET_SHAPSHOT_LISTGet a list of snapshots for a session.需要连接
Get a list of snapshots for a session.
认证
需要 Connected AccountTags
Get snapshot sharing settings.GRAFANA_GET_SHARING_OPTIONSGet snapshot sharing settings.需要连接
Get snapshot sharing settings.
认证
需要 Connected AccountTags
GetSignedInUserGRAFANA_GET_SIGNED_IN_USERGet (current authenticated user)需要连接
Get (current authenticated user)
认证
需要 Connected AccountTags
Organizations of the actual User.GRAFANA_GET_SIGNED_IN_USER_ORG_LISTReturn a list of all organizations of the current user.需要连接
Return a list of all organizations of the current user.
认证
需要 Connected AccountTags
Teams that the actual User is member of.GRAFANA_GET_SIGNED_IN_USER_TEAM_LISTReturn a list of all teams that the current user is member of.需要连接
Return a list of all teams that the current user is member of.
认证
需要 Connected AccountTags
It performs Single Logout (SLO) callback.GRAFANA_GET_SLOThere might be two possible requests: 1. Logout response (callback) when Grafana initiates single logout and IdP returns response to logout request. 2. Logout request when another SP initiates single logout and IdP sends logout request to the Grafana, or in case of IdP-initiated logout.需要连接
There might be two possible requests: 1. Logout response (callback) when Grafana initiates single logout and IdP returns response to logout request. 2. Logout request when another SP initiates single logout and IdP sends logout request to the Grafana, or in case of IdP-initiated logout.
认证
需要 Connected AccountTags
Get metadata about a snapshot, including where it is in its processing and final results.GRAFANA_GET_SNAPSHOTGet metadata about a snapshot, including where it is in its processing and final results.需要连接
Get metadata about a snapshot, including where it is in its processing and final results.
认证
需要 Connected AccountTags
Check license availability.GRAFANA_GET_STATUSCheck license availability.需要连接
Check license availability.
认证
需要 Connected AccountTags
Returns the current state of the LDAP background sync integration.GRAFANA_GET_SYNC_STATUSYou need to have a permission with action `ldap.status:read`.需要连接
You need to have a permission with action `ldap.status:read`.
认证
需要 Connected AccountTags
Get Team By ID.GRAFANA_GET_TEAM_BY_IDGet Team By ID.需要连接
Get Team By ID.
认证
需要 Connected AccountTags
Get External Groups.GRAFANA_GET_TEAM_GROUPS_APIGet External Groups.需要连接
Get External Groups.
认证
需要 Connected AccountTags
Retrieves LBAC rules for a team.GRAFANA_GET_TEAM_LBACRULES_APIRetrieves LBAC rules for a team.需要连接
Retrieves LBAC rules for a team.
认证
需要 Connected AccountTags
Get Team Members.GRAFANA_GET_TEAM_MEMBERSGet Team Members.需要连接
Get Team Members.
认证
需要 Connected AccountTags
Get Team Preferences.GRAFANA_GET_TEAM_PREFERENCESGet Team Preferences.需要连接
Get Team Preferences.
认证
需要 Connected AccountTags
Auth tokens of the actual User.GRAFANA_GET_USER_AUTH_TOKENSReturn a list of all auth tokens (devices) that the actual user currently have logged in from.需要连接
Return a list of all auth tokens (devices) that the actual user currently have logged in from.
认证
需要 Connected AccountTags
Get user by id.GRAFANA_GET_USER_BY_IDGet user by id.需要连接
Get user by id.
认证
需要 Connected AccountTags
Get user by login or email.GRAFANA_GET_USER_BY_LOGIN_OR_EMAILGet user by login or email.需要连接
Get user by login or email.
认证
需要 Connected AccountTags
Finds an user based on a username in LDAP. This helps illustrate how would the particular user be mapped in Grafana when synced.GRAFANA_GET_USER_FROM_LDAPIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `ldap.user:read`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `ldap.user:read`.
认证
需要 Connected AccountTags
Get organizations for user.GRAFANA_GET_USER_ORG_LISTGet organizations for user identified by id.需要连接
Get organizations for user identified by id.
认证
需要 Connected AccountTags
Get user preferences.GRAFANA_GET_USER_PREFERENCESUse /apis/preferences.grafana.app/v1/namespaces/{namespace}/preferences/user-{uid}需要连接
Use /apis/preferences.grafana.app/v1/namespaces/{namespace}/preferences/user-{uid}
认证
需要 Connected AccountTags
Fetch user quota.GRAFANA_GET_USER_QUOTAIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.quotas:list` and scope `global.users:1` (userIDScope).需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.quotas:list` and scope `global.users:1` (userIDScope).
认证
需要 Connected AccountTags
Fetch user quota.GRAFANA_GET_USER_QUOTASFetch user quota.需要连接
Fetch user quota.
认证
需要 Connected AccountTags
Get teams for user.GRAFANA_GET_USER_TEAMSGet teams for user identified by id.需要连接
Get teams for user identified by id.
认证
需要 Connected AccountTags
Import dashboard.GRAFANA_IMPORT_DASHBOARDImport dashboard.需要连接
Import dashboard.
认证
需要 Connected AccountTags
Interpolate dashboard. This is an experimental endpoint under dashboardLibrary or suggestedDashboards feature flags and is subject to change.GRAFANA_INTERPOLATE_DASHBOARDInterpolate dashboard. This is an experimental endpoint under dashboardLibrary or suggestedDashboards feature flags and is subject to change.需要连接
Interpolate dashboard. This is an experimental endpoint under dashboardLibrary or suggestedDashboards feature flags and is subject to change.
认证
需要 Connected AccountTags
List all SSO Settings entriesGRAFANA_LIST_ALL_PROVIDERS_SETTINGSYou need to have a permission with action `settings:read` with scope `settings:auth.<provider>:*`.需要连接
You need to have a permission with action `settings:read` with scope `settings:auth.<provider>:*`.
认证
需要 Connected AccountTags
Lists all devices within the last 30 daysGRAFANA_LIST_DEVICESLists all devices within the last 30 days需要连接
Lists all devices within the last 30 days
认证
需要 Connected AccountTags
ListPublicDashboardsGRAFANA_LIST_PUBLIC_DASHBOARDSGet list of public dashboards需要连接
Get list of public dashboards
认证
需要 Connected AccountTags
Lists all rules in the database: active or deleted.GRAFANA_LIST_RECORDING_RULESLists all rules in the database: active or deleted.需要连接
Lists all rules in the database: active or deleted.
认证
需要 Connected AccountTags
Get all roles.GRAFANA_LIST_ROLESGets all existing roles. The response contains all global and organization local roles, for the organization which user is signed in. You need to have a permission with action `roles:read` and scope `roles:*`. The `delegatable` flag reduces the set of roles to only those for which the signed-in user has permissions to assign.需要连接
Gets all existing roles. The response contains all global and organization local roles, for the organization which user is signed in. You need to have a permission with action `roles:read` and scope `roles:*`. The `delegatable` flag reduces the set of roles to only those for which the signed-in user has permissions to assign.
认证
需要 Connected AccountTags
List search sorting options.GRAFANA_LIST_SORT_OPTIONSList search sorting options.需要连接
List search sorting options.
认证
需要 Connected AccountTags
Get team roles.GRAFANA_LIST_TEAM_ROLESYou need to have a permission with action `teams.roles:read` and scope `teams:id:<team ID>`.需要连接
You need to have a permission with action `teams.roles:read` and scope `teams:id:<team ID>`.
认证
需要 Connected AccountTags
List roles assigned to multiple teams.GRAFANA_LIST_TEAMS_ROLESLists the roles that have been directly assigned to the given teams. You need to have a permission with action `teams.roles:read` and scope `teams:id:*`.需要连接
Lists the roles that have been directly assigned to the given teams. You need to have a permission with action `teams.roles:read` and scope `teams:id:*`.
认证
需要 Connected AccountTags
Get service account tokensGRAFANA_LIST_TOKENSRequired permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:read` scope: `global:serviceaccounts:id:1` (single service account) Requires basic authentication and that the authenticated user is a Grafana Admin.需要连接
Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:read` scope: `global:serviceaccounts:id:1` (single service account) Requires basic authentication and that the authenticated user is a Grafana Admin.
认证
需要 Connected AccountTags
List roles assigned to a user.GRAFANA_LIST_USER_ROLESLists the roles that have been directly assigned to a given user. The list does not include built-in roles (Viewer, Editor, Admin or Grafana Admin), and it does not include roles that have been inherited from a team. You need to have a permission with action `users.roles:read` and scope `users:id:<user ID>`.需要连接
Lists the roles that have been directly assigned to a given user. The list does not include built-in roles (Viewer, Editor, Admin or Grafana Admin), and it does not include roles that have been inherited from a team. You need to have a permission with action `users.roles:read` and scope `users:id:<user ID>`.
认证
需要 Connected AccountTags
List roles assigned to multiple users.GRAFANA_LIST_USERS_ROLESLists the roles that have been directly assigned to the given users. The list does not include built-in roles (Viewer, Editor, Admin or Grafana Admin), and it does not include roles that have been inherited from a team. You need to have a permission with action `users.roles:read` and scope `users:id:*`.需要连接
Lists the roles that have been directly assigned to the given users. The list does not include built-in roles (Viewer, Editor, Admin or Grafana Admin), and it does not include roles that have been inherited from a team. You need to have a permission with action `users.roles:read` and scope `users:id:*`.
认证
需要 Connected AccountTags
Delete multiple annotations.GRAFANA_MASS_DELETE_ANNOTATIONSDelete multiple annotations.需要连接
Delete multiple annotations.
认证
需要 Connected AccountTags
Move folder.GRAFANA_MOVE_FOLDERUse: /apis/folder.grafana.app/v1/namespaces/{ns}/folders/{folder_uid}, Changing the parent folder annotation需要连接
Use: /apis/folder.grafana.app/v1/namespaces/{ns}/folders/{folder_uid}, Changing the parent folder annotation
认证
需要 Connected AccountTags
Patch Annotation.GRAFANA_PATCH_ANNOTATIONUpdates one or more properties of an annotation that matches the specified ID. This operation currently supports updating of the `text`, `tags`, `time` and `timeEnd` properties. This is available in Grafana 6.0.0-beta2 and above.需要连接
Updates one or more properties of an annotation that matches the specified ID. This operation currently supports updating of the `text`, `tags`, `time` and `timeEnd` properties. This is available in Grafana 6.0.0-beta2 and above.
认证
需要 Connected AccountTags
Patch Current Org Prefs.GRAFANA_PATCH_ORG_PREFERENCESUse /apis/preferences.grafana.app/v1/namespaces/{namespace}/preferences/namespace需要连接
Use /apis/preferences.grafana.app/v1/namespaces/{namespace}/preferences/namespace
认证
需要 Connected AccountTags
Patch SSO SettingsGRAFANA_PATCH_PROVIDER_SETTINGSPartially updates the SSO Settings for a provider. Only provided fields are updated. You need to have a permission with action `settings:write` and scope `settings:auth.<provider>:*`.需要连接
Partially updates the SSO Settings for a provider. Only provided fields are updated. You need to have a permission with action `settings:write` and scope `settings:auth.<provider>:*`.
认证
需要 Connected AccountTags
Update comment for query in query history.GRAFANA_PATCH_QUERY_COMMENTUpdates comment for query in query history as specified by the UID.需要连接
Updates comment for query in query history as specified by the UID.
认证
需要 Connected AccountTags
Patch user preferences.GRAFANA_PATCH_USER_PREFERENCESUse /apis/preferences.grafana.app/v1/namespaces/{namespace}/preferences/user-{uid}需要连接
Use /apis/preferences.grafana.app/v1/namespaces/{namespace}/preferences/user-{uid}
认证
需要 Connected AccountTags
It performs Assertion Consumer Service (ACS).GRAFANA_POST_ACSIt performs Assertion Consumer Service (ACS).需要连接
It performs Assertion Consumer Service (ACS).
认证
需要 Connected AccountTags
Create Annotation.GRAFANA_POST_ANNOTATIONCreates an annotation in the Grafana database. The dashboardId and panelId fields are optional. If they are not specified then an organization annotation is created and can be queried in any dashboard that adds the Grafana annotations data source. When creating a region annotation include the timeEnd property. The format for `time` and `timeEnd` should be epoch numbers in millisecond resolution. The response for this HTTP request is slightly different in versions prior to v6.4. In prior versions you would also get an endId if you where creating a region. But in 6.4 regions are represented using a single event with time and timeEnd properties.需要连接
Creates an annotation in the Grafana database. The dashboardId and panelId fields are optional. If they are not specified then an organization annotation is created and can be queried in any dashboard that adds the Grafana annotations data source. When creating a region annotation include the timeEnd property. The format for `time` and `timeEnd` should be epoch numbers in millisecond resolution. The response for this HTTP request is slightly different in versions prior to v6.4. In prior versions you would also get an endId if you where creating a region. But in 6.4 regions are represented using a single event with time and timeEnd properties.
认证
需要 Connected AccountTags
Create / Update dashboardGRAFANA_POST_DASHBOARDCreates a new dashboard or updates an existing dashboard. Note: This endpoint is not intended for creating folders, use `POST /api/folders` for that. Use: /apis/dashboard.grafana.app/v1/namespaces/{ns}/dashboards需要连接
Creates a new dashboard or updates an existing dashboard. Note: This endpoint is not intended for creating folders, use `POST /api/folders` for that. Use: /apis/dashboard.grafana.app/v1/namespaces/{ns}/dashboards
认证
需要 Connected AccountTags
Create Annotation in Graphite format.GRAFANA_POST_GRAPHITE_ANNOTATIONCreates an annotation by using Graphite-compatible event format. The `when` and `data` fields are optional. If `when` is not specified then the current time will be used as annotation’s timestamp. The `tags` field can also be in prior to Graphite `0.10.0` format (string with multiple tags being separated by a space).需要连接
Creates an annotation by using Graphite-compatible event format. The `when` and `data` fields are optional. If `when` is not specified then the current time will be used as annotation’s timestamp. The `tags` field can also be in prior to Graphite `0.10.0` format (string with multiple tags being separated by a space).
认证
需要 Connected AccountTags
Create license token.GRAFANA_POST_LICENSE_TOKENYou need to have a permission with action `licensing:write`.需要连接
You need to have a permission with action `licensing:write`.
认证
需要 Connected AccountTags
Manually force license refresh.GRAFANA_POST_RENEW_LICENSE_TOKENManually ask license issuer for a new token. Available in Grafana Enterprise v7.4+. You need to have a permission with action `licensing:write`.需要连接
Manually ask license issuer for a new token. Available in Grafana Enterprise v7.4+. You need to have a permission with action `licensing:write`.
认证
需要 Connected AccountTags
It performs Single Logout (SLO) callback.GRAFANA_POST_SLOThere might be two possible requests: 1. Logout response (callback) when Grafana initiates single logout and IdP returns response to logout request. 2. Logout request when another SP initiates single logout and IdP sends logout request to the Grafana, or in case of IdP-initiated logout.需要连接
There might be two possible requests: 1. Logout response (callback) when Grafana initiates single logout and IdP returns response to logout request. 2. Logout request when another SP initiates single logout and IdP sends logout request to the Grafana, or in case of IdP-initiated logout.
认证
需要 Connected AccountTags
Enables a single Grafana user to be synchronized against LDAP.GRAFANA_POST_SYNC_USER_WITH_LDAPIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `ldap.user:sync`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `ldap.user:sync`.
认证
需要 Connected AccountTags
DataSource query metrics with expressions.GRAFANA_QUERY_METRICS_WITH_EXPRESSIONSIf you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:query`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:query`.
认证
需要 Connected AccountTags
QueryPublicDashboardGRAFANA_QUERY_PUBLIC_DASHBOARDGet results for a given panel on a public dashboard需要连接
Get results for a given panel on a public dashboard
认证
需要 Connected AccountTags
Refresh license stats.GRAFANA_REFRESH_LICENSE_STATSYou need to have a permission with action `licensing:read`.需要连接
You need to have a permission with action `licensing:read`.
认证
需要 Connected AccountTags
Reloads the LDAP configuration.GRAFANA_RELOAD_LDAPCFGIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `ldap.config:reload`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `ldap.config:reload`.
认证
需要 Connected AccountTags
Delete user in current organization.GRAFANA_REMOVE_ORG_USERIf you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users:remove` with scope `users:*`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users:remove` with scope `users:*`.
认证
需要 Connected AccountTags
Delete user in current organization.GRAFANA_REMOVE_ORG_USER_FOR_CURRENT_ORGIf you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users:remove` with scope `users:*`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users:remove` with scope `users:*`.
认证
需要 Connected AccountTags
Remove SSO SettingsGRAFANA_REMOVE_PROVIDER_SETTINGSRemoves the SSO Settings for a provider. You need to have a permission with action `settings:write` and scope `settings:auth.<provider>:*`.需要连接
Removes the SSO Settings for a provider. You need to have a permission with action `settings:write` and scope `settings:auth.<provider>:*`.
认证
需要 Connected AccountTags
Remove External Group.GRAFANA_REMOVE_TEAM_GROUP_API_QUERYRemove External Group.需要连接
Remove External Group.
认证
需要 Connected AccountTags
Remove Member From Team.GRAFANA_REMOVE_TEAM_MEMBERRemove Member From Team.需要连接
Remove Member From Team.
认证
需要 Connected AccountTags
Remove team role.GRAFANA_REMOVE_TEAM_ROLEYou need to have a permission with action `teams.roles:remove` and scope `permissions:type:delegate`.需要连接
You need to have a permission with action `teams.roles:remove` and scope `permissions:type:delegate`.
认证
需要 Connected AccountTags
Remove a user role assignment.GRAFANA_REMOVE_USER_ROLERevoke a role from a user. For bulk updates consider Set user role assignments. You need to have a permission with action `users.roles:remove` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only unassign roles which have same, or a subset of permissions which the user has. For example, if a user does not have required permissions for creating users, they won’t be able to unassign a role which will allow to do that. This is done to prevent escalation of privileges.需要连接
Revoke a role from a user. For bulk updates consider Set user role assignments. You need to have a permission with action `users.roles:remove` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only unassign roles which have same, or a subset of permissions which the user has. For example, if a user does not have required permissions for creating users, they won’t be able to unassign a role which will allow to do that. This is done to prevent escalation of privileges.
认证
需要 Connected AccountTags
Download a CSV report.GRAFANA_RENDER_REPORT_CSVSAvailable to all users and with a valid license.需要连接
Available to all users and with a valid license.
认证
需要 Connected AccountTags
Render report for multiple dashboards.GRAFANA_RENDER_REPORT_PDFSAvailable to all users and with a valid license.需要连接
Available to all users and with a valid license.
认证
需要 Connected AccountTags
Restore a dashboard to a given dashboard version using UID.GRAFANA_RESTORE_DASHBOARD_VERSION_BY_UIDThis API will be removed when /apis/dashboard.grafana.app/v1 is released. You can restore a dashboard by reading it from history, then creating it again.需要连接
This API will be removed when /apis/dashboard.grafana.app/v1 is released. You can restore a dashboard by reading it from history, then creating it again.
认证
需要 Connected AccountTags
Get JSON Web Key Set (JWKS) with all the keys that can be used to verify tokens (public keys)GRAFANA_RETRIEVE_JWKSRequired permissions None需要连接
Required permissions None
认证
需要 Connected AccountTags
Get single serviceaccount by IdGRAFANA_RETRIEVE_SERVICE_ACCOUNTRequired permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:read` scope: `serviceaccounts:id:1` (single service account)需要连接
Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:read` scope: `serviceaccounts:id:1` (single service account)
认证
需要 Connected AccountTags
Revoke invite.GRAFANA_REVOKE_INVITERevoke invite.需要连接
Revoke invite.
认证
需要 Connected AccountTags
Revoke an auth token of the actual User.GRAFANA_REVOKE_USER_AUTH_TOKENRevokes the given auth token (device) for the actual user. User of issued auth token (device) will no longer be logged in and will be required to authenticate again upon next activity.需要连接
Revokes the given auth token (device) for the actual user. User of issued auth token (device) will no longer be logged in and will be required to authenticate again upon next activity.
认证
需要 Connected AccountTags
Deletes all rule groups that were imported from Prometheus-compatible sources within the specified namespace.GRAFANA_ROUTE_CONVERT_PROMETHEUS_CORTEX_DELETE_NAMESPACEDeletes all rule groups that were imported from Prometheus-compatible sources within the specified namespace.需要连接
Deletes all rule groups that were imported from Prometheus-compatible sources within the specified namespace.
认证
需要 Connected AccountTags
Deletes a specific rule group if it was imported from a Prometheus-compatible source.GRAFANA_ROUTE_CONVERT_PROMETHEUS_CORTEX_DELETE_RULE_GROUPDeletes a specific rule group if it was imported from a Prometheus-compatible source.需要连接
Deletes a specific rule group if it was imported from a Prometheus-compatible source.
认证
需要 Connected AccountTags
Gets Grafana-managed alert rules that were imported from Prometheus-compatible sources for a specified namespace (folder).GRAFANA_ROUTE_CONVERT_PROMETHEUS_CORTEX_GET_NAMESPACEGets Grafana-managed alert rules that were imported from Prometheus-compatible sources for a specified namespace (folder).需要连接
Gets Grafana-managed alert rules that were imported from Prometheus-compatible sources for a specified namespace (folder).
认证
需要 Connected AccountTags
Gets a single rule group in Prometheus-compatible format if it was imported from a Prometheus-compatible source.GRAFANA_ROUTE_CONVERT_PROMETHEUS_CORTEX_GET_RULE_GROUPGets a single rule group in Prometheus-compatible format if it was imported from a Prometheus-compatible source.需要连接
Gets a single rule group in Prometheus-compatible format if it was imported from a Prometheus-compatible source.
认证
需要 Connected AccountTags
Gets all Grafana-managed alert rules that were imported from Prometheus-compatible sources, grouped by namespace.GRAFANA_ROUTE_CONVERT_PROMETHEUS_CORTEX_GET_RULESGets all Grafana-managed alert rules that were imported from Prometheus-compatible sources, grouped by namespace.需要连接
Gets all Grafana-managed alert rules that were imported from Prometheus-compatible sources, grouped by namespace.
认证
需要 Connected AccountTags
Converts the submitted rule groups into Grafana-Managed Rules.GRAFANA_ROUTE_CONVERT_PROMETHEUS_CORTEX_POST_RULE_GROUPSConverts the submitted rule groups into Grafana-Managed Rules.需要连接
Converts the submitted rule groups into Grafana-Managed Rules.
认证
需要 Connected AccountTags
Deletes all rule groups that were imported from Prometheus-compatible sources within the specified namespace.GRAFANA_ROUTE_CONVERT_PROMETHEUS_DELETE_NAMESPACEDeletes all rule groups that were imported from Prometheus-compatible sources within the specified namespace.需要连接
Deletes all rule groups that were imported from Prometheus-compatible sources within the specified namespace.
认证
需要 Connected AccountTags
Deletes a specific rule group if it was imported from a Prometheus-compatible source.GRAFANA_ROUTE_CONVERT_PROMETHEUS_DELETE_RULE_GROUPDeletes a specific rule group if it was imported from a Prometheus-compatible source.需要连接
Deletes a specific rule group if it was imported from a Prometheus-compatible source.
认证
需要 Connected AccountTags
Gets Grafana-managed alert rules that were imported from Prometheus-compatible sources for a specified namespace (folder).GRAFANA_ROUTE_CONVERT_PROMETHEUS_GET_NAMESPACEGets Grafana-managed alert rules that were imported from Prometheus-compatible sources for a specified namespace (folder).需要连接
Gets Grafana-managed alert rules that were imported from Prometheus-compatible sources for a specified namespace (folder).
认证
需要 Connected AccountTags
Gets a single rule group in Prometheus-compatible format if it was imported from a Prometheus-compatible source.GRAFANA_ROUTE_CONVERT_PROMETHEUS_GET_RULE_GROUPGets a single rule group in Prometheus-compatible format if it was imported from a Prometheus-compatible source.需要连接
Gets a single rule group in Prometheus-compatible format if it was imported from a Prometheus-compatible source.
认证
需要 Connected AccountTags
Gets all Grafana-managed alert rules that were imported from Prometheus-compatible sources, grouped by namespace.GRAFANA_ROUTE_CONVERT_PROMETHEUS_GET_RULESGets all Grafana-managed alert rules that were imported from Prometheus-compatible sources, grouped by namespace.需要连接
Gets all Grafana-managed alert rules that were imported from Prometheus-compatible sources, grouped by namespace.
认证
需要 Connected AccountTags
Converts the submitted rule groups into Grafana-Managed Rules.GRAFANA_ROUTE_CONVERT_PROMETHEUS_POST_RULE_GROUPSConverts the submitted rule groups into Grafana-Managed Rules.需要连接
Converts the submitted rule groups into Grafana-Managed Rules.
认证
需要 Connected AccountTags
Delete a specific alert rule by UID.GRAFANA_ROUTE_DELETE_ALERT_RULEDelete a specific alert rule by UID.需要连接
Delete a specific alert rule by UID.
认证
需要 Connected AccountTags
RouteDeleteAlertRuleGroupGRAFANA_ROUTE_DELETE_ALERT_RULE_GROUPDelete rule group需要连接
Delete rule group
认证
需要 Connected AccountTags
Delete a contact point.GRAFANA_ROUTE_DELETE_CONTACTPOINTSDelete a contact point.需要连接
Delete a contact point.
认证
需要 Connected AccountTags
Delete a mute timing.GRAFANA_ROUTE_DELETE_MUTE_TIMINGDelete a mute timing.需要连接
Delete a mute timing.
认证
需要 Connected AccountTags
Delete a notification template group.GRAFANA_ROUTE_DELETE_TEMPLATEDelete a notification template group.需要连接
Delete a notification template group.
认证
需要 Connected AccountTags
Export a mute timing in provisioning format.GRAFANA_ROUTE_EXPORT_MUTE_TIMINGExport a mute timing in provisioning format.需要连接
Export a mute timing in provisioning format.
认证
需要 Connected AccountTags
Export all mute timings in provisioning format.GRAFANA_ROUTE_EXPORT_MUTE_TIMINGSExport all mute timings in provisioning format.需要连接
Export all mute timings in provisioning format.
认证
需要 Connected AccountTags
Get a specific alert rule by UID.GRAFANA_ROUTE_GET_ALERT_RULEGet a specific alert rule by UID.需要连接
Get a specific alert rule by UID.
认证
需要 Connected AccountTags
Export an alert rule in provisioning file format.GRAFANA_ROUTE_GET_ALERT_RULE_EXPORTExport an alert rule in provisioning file format.需要连接
Export an alert rule in provisioning file format.
认证
需要 Connected AccountTags
Get a rule group.GRAFANA_ROUTE_GET_ALERT_RULE_GROUPGet a rule group.需要连接
Get a rule group.
认证
需要 Connected AccountTags
Export an alert rule group in provisioning file format.GRAFANA_ROUTE_GET_ALERT_RULE_GROUP_EXPORTExport an alert rule group in provisioning file format.需要连接
Export an alert rule group in provisioning file format.
认证
需要 Connected AccountTags
Get all the alert rules.GRAFANA_ROUTE_GET_ALERT_RULESGet all the alert rules.需要连接
Get all the alert rules.
认证
需要 Connected AccountTags
Export all alert rules in provisioning file format.GRAFANA_ROUTE_GET_ALERT_RULES_EXPORTExport all alert rules in provisioning file format.需要连接
Export all alert rules in provisioning file format.
认证
需要 Connected AccountTags
Get all the contact points.GRAFANA_ROUTE_GET_CONTACTPOINTSGet all the contact points.需要连接
Get all the contact points.
认证
需要 Connected AccountTags
Export all contact points in provisioning file format.GRAFANA_ROUTE_GET_CONTACTPOINTS_EXPORTExport all contact points in provisioning file format.需要连接
Export all contact points in provisioning file format.
认证
需要 Connected AccountTags
Get a mute timing.GRAFANA_ROUTE_GET_MUTE_TIMINGGet a mute timing.需要连接
Get a mute timing.
认证
需要 Connected AccountTags
Get all the mute timings.GRAFANA_ROUTE_GET_MUTE_TIMINGSGet all the mute timings.需要连接
Get all the mute timings.
认证
需要 Connected AccountTags
Get the notification policy tree.GRAFANA_ROUTE_GET_POLICY_TREEGet the notification policy tree.需要连接
Get the notification policy tree.
认证
需要 Connected AccountTags
Export the notification policy tree in provisioning file format.GRAFANA_ROUTE_GET_POLICY_TREE_EXPORTExport the notification policy tree in provisioning file format.需要连接
Export the notification policy tree in provisioning file format.
认证
需要 Connected AccountTags
Get a notification template group.GRAFANA_ROUTE_GET_TEMPLATEGet a notification template group.需要连接
Get a notification template group.
认证
需要 Connected AccountTags
Get all notification template groups.GRAFANA_ROUTE_GET_TEMPLATESGet all notification template groups.需要连接
Get all notification template groups.
认证
需要 Connected AccountTags
Create a new alert rule.GRAFANA_ROUTE_POST_ALERT_RULECreate a new alert rule.需要连接
Create a new alert rule.
认证
需要 Connected AccountTags
Create a contact point.GRAFANA_ROUTE_POST_CONTACTPOINTSCreate a contact point.需要连接
Create a contact point.
认证
需要 Connected AccountTags
Create a new mute timing.GRAFANA_ROUTE_POST_MUTE_TIMINGCreate a new mute timing.需要连接
Create a new mute timing.
认证
需要 Connected AccountTags
Update an existing alert rule.GRAFANA_ROUTE_PUT_ALERT_RULEUpdate an existing alert rule.需要连接
Update an existing alert rule.
认证
需要 Connected AccountTags
Create or update alert rule group.GRAFANA_ROUTE_PUT_ALERT_RULE_GROUPCreate or update alert rule group.需要连接
Create or update alert rule group.
认证
需要 Connected AccountTags
Update an existing contact point.GRAFANA_ROUTE_PUT_CONTACTPOINTUpdate an existing contact point.需要连接
Update an existing contact point.
认证
需要 Connected AccountTags
Replace an existing mute timing.GRAFANA_ROUTE_PUT_MUTE_TIMINGReplace an existing mute timing.需要连接
Replace an existing mute timing.
认证
需要 Connected AccountTags
Sets the notification policy tree.GRAFANA_ROUTE_PUT_POLICY_TREESets the notification policy tree.需要连接
Sets the notification policy tree.
认证
需要 Connected AccountTags
Updates an existing notification template group.GRAFANA_ROUTE_PUT_TEMPLATEUpdates an existing notification template group.需要连接
Updates an existing notification template group.
认证
需要 Connected AccountTags
Clears the notification policy tree.GRAFANA_ROUTE_RESET_POLICY_TREEClears the notification policy tree.需要连接
Clears the notification policy tree.
认证
需要 Connected AccountTags
Save settings.GRAFANA_SAVE_REPORT_SETTINGSAvailable to org admins only and with a valid or expired license. You need to have a permission with action `reports.settings:write`xx.需要连接
Available to org admins only and with a valid or expired license. You need to have a permission with action `reports.settings:write`xx.
认证
需要 Connected AccountTags
SearchGRAFANA_SEARCHSearch需要连接
Search
认证
需要 Connected AccountTags
List snapshots.GRAFANA_SEARCH_DASHBOARD_SNAPSHOTSList snapshots.需要连接
List snapshots.
认证
需要 Connected AccountTags
Lists all devices within the last 30 daysGRAFANA_SEARCH_DEVICESLists all devices within the last 30 days需要连接
Lists all devices within the last 30 days
认证
需要 Connected AccountTags
Search service accounts with pagingGRAFANA_SEARCH_ORG_SERVICE_ACCOUNTS_WITH_PAGINGRequired permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:read` scope: `serviceaccounts:*`需要连接
Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:read` scope: `serviceaccounts:*`
认证
需要 Connected AccountTags
Search Users in Organization.GRAFANA_SEARCH_ORG_USERSIf you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users:read` with scope `users:*`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users:read` with scope `users:*`.
认证
需要 Connected AccountTags
Search all Organizations.GRAFANA_SEARCH_ORGSSearch all Organizations.需要连接
Search all Organizations.
认证
需要 Connected AccountTags
Get playlists.GRAFANA_SEARCH_PLAYLISTSPlease refer to [new API](?api=playlist.grafana.app-v1).需要连接
Please refer to [new API](?api=playlist.grafana.app-v1).
认证
需要 Connected AccountTags
Query history search.GRAFANA_SEARCH_QUERIESReturns a list of queries in the query history that matches the search criteria. Query history search supports pagination. Use the `limit` parameter to control the maximum number of queries returned; the default limit is 100. You can also use the `page` query parameter to fetch queries from any page other than the first one.需要连接
Returns a list of queries in the query history that matches the search criteria. Query history search supports pagination. Use the `limit` parameter to control the maximum number of queries returned; the default limit is 100. You can also use the `page` query parameter to fetch queries from any page other than the first one.
认证
需要 Connected AccountTags
Search for team groups with optional filtering and pagination.GRAFANA_SEARCH_TEAM_GROUPSSearch for team groups with optional filtering and pagination.需要连接
Search for team groups with optional filtering and pagination.
认证
需要 Connected AccountTags
Team Search With Paging.GRAFANA_SEARCH_TEAMSTeam Search With Paging.需要连接
Team Search With Paging.
认证
需要 Connected AccountTags
Get users.GRAFANA_SEARCH_USERSReturns all users that the authenticated user has permission to view, admin permission required.需要连接
Returns all users that the authenticated user has permission to view, admin permission required.
认证
需要 Connected AccountTags
Get users with paging.GRAFANA_SEARCH_USERS_WITH_PAGINGGet users with paging.需要连接
Get users with paging.
认证
需要 Connected AccountTags
Send a report.GRAFANA_SEND_REPORTGenerate and send a report. This API waits for the report to be generated before returning. We recommend that you set the client’s timeout to at least 60 seconds. Available to org admins only and with a valid license. Only available in Grafana Enterprise v7.0+. This API endpoint is experimental and may be deprecated in a future release. On deprecation, a migration strategy will be provided and the endpoint will remain functional until the next major release of Grafana. You need to have a permission with action `reports:send`.需要连接
Generate and send a report. This API waits for the report to be generated before returning. We recommend that you set the client’s timeout to at least 60 seconds. Available to org admins only and with a valid license. Only available in Grafana Enterprise v7.0+. This API endpoint is experimental and may be deprecated in a future release. On deprecation, a migration strategy will be provided and the endpoint will remain functional until the next major release of Grafana. You need to have a permission with action `reports:send`.
认证
需要 Connected AccountTags
Send test report via email.GRAFANA_SEND_TEST_EMAILAvailable to org admins only and with a valid license. You need to have a permission with action `reports:send`.需要连接
Available to org admins only and with a valid license. You need to have a permission with action `reports:send`.
认证
需要 Connected AccountTags
SetDataSourceCacheConfigGRAFANA_SET_DATA_SOURCE_CACHE_CONFIGset cache config for a single data source需要连接
set cache config for a single data source
认证
需要 Connected AccountTags
Set resource permissions.GRAFANA_SET_RESOURCE_PERMISSIONSAssigns permissions for a resource by a given type (`:resource`) and `:resourceID` to one or many assignment types. Allowed resources are `datasources`, `teams`, `dashboards`, `folders`, and `serviceaccounts`. Refer to the `/access-control/{resource}/description` endpoint for allowed Permissions.需要连接
Assigns permissions for a resource by a given type (`:resource`) and `:resourceID` to one or many assignment types. Allowed resources are `datasources`, `teams`, `dashboards`, `folders`, and `serviceaccounts`. Refer to the `/access-control/{resource}/description` endpoint for allowed Permissions.
认证
需要 Connected AccountTags
Set resource permissions for a built-in role.GRAFANA_SET_RESOURCE_PERMISSIONS_FOR_BUILT_IN_ROLEAssigns permissions for a resource by a given type (`:resource`) and `:resourceID` to a built-in role. Allowed resources are `datasources`, `teams`, `dashboards`, `folders`, and `serviceaccounts`. Refer to the `/access-control/{resource}/description` endpoint for allowed Permissions.需要连接
Assigns permissions for a resource by a given type (`:resource`) and `:resourceID` to a built-in role. Allowed resources are `datasources`, `teams`, `dashboards`, `folders`, and `serviceaccounts`. Refer to the `/access-control/{resource}/description` endpoint for allowed Permissions.
认证
需要 Connected AccountTags
Set resource permissions for a team.GRAFANA_SET_RESOURCE_PERMISSIONS_FOR_TEAMAssigns permissions for a resource by a given type (`:resource`) and `:resourceID` to a team. Allowed resources are `datasources`, `teams`, `dashboards`, `folders`, and `serviceaccounts`. Refer to the `/access-control/{resource}/description` endpoint for allowed Permissions.需要连接
Assigns permissions for a resource by a given type (`:resource`) and `:resourceID` to a team. Allowed resources are `datasources`, `teams`, `dashboards`, `folders`, and `serviceaccounts`. Refer to the `/access-control/{resource}/description` endpoint for allowed Permissions.
认证
需要 Connected AccountTags
Set resource permissions for a user.GRAFANA_SET_RESOURCE_PERMISSIONS_FOR_USERAssigns permissions for a resource by a given type (`:resource`) and `:resourceID` to a user or a service account. Allowed resources are `datasources`, `teams`, `dashboards`, `folders`, and `serviceaccounts`. Refer to the `/access-control/{resource}/description` endpoint for allowed Permissions.需要连接
Assigns permissions for a resource by a given type (`:resource`) and `:resourceID` to a user or a service account. Allowed resources are `datasources`, `teams`, `dashboards`, `folders`, and `serviceaccounts`. Refer to the `/access-control/{resource}/description` endpoint for allowed Permissions.
认证
需要 Connected AccountTags
Set role assignments.GRAFANA_SET_ROLE_ASSIGNMENTSSet role assignments for the role with the given UID. You need to have a permission with action `teams.roles:add` and `teams.roles:remove` and scope `permissions:type:delegate`, and `users.roles:add` and `users.roles:remove` and scope `permissions:type:delegate`.需要连接
Set role assignments for the role with the given UID. You need to have a permission with action `teams.roles:add` and `teams.roles:remove` and scope `permissions:type:delegate`, and `users.roles:add` and `users.roles:remove` and scope `permissions:type:delegate`.
认证
需要 Connected AccountTags
Set team memberships.GRAFANA_SET_TEAM_MEMBERSHIPSTakes user emails, and updates team members and admins to the provided lists of users. Any current team members and admins not in the provided lists will be removed.需要连接
Takes user emails, and updates team members and admins to the provided lists of users. Any current team members and admins not in the provided lists will be removed.
认证
需要 Connected AccountTags
Update team role.GRAFANA_SET_TEAM_ROLESYou need to have a permission with action `teams.roles:add` and `teams.roles:remove` and scope `permissions:type:delegate` for each.需要连接
You need to have a permission with action `teams.roles:add` and `teams.roles:remove` and scope `permissions:type:delegate` for each.
认证
需要 Connected AccountTags
Set user role assignments.GRAFANA_SET_USER_ROLESUpdate the user’s role assignments to match the provided set of UIDs. This will remove any assigned roles that aren’t in the request and add roles that are in the set but are not already assigned to the user. Roles mapped through group attribute sync are not impacted. If you want to add or remove a single role, consider using Add a user role assignment or Remove a user role assignment instead. You need to have a permission with action `users.roles:add` and `users.roles:remove` and scope `permissions:type:delegate` for each. `permissions:type:delegate` scope ensures that users can only assign or unassign roles which have same, or a subset of permissions which the user has. For example, if a user does not have required permissions for creating users, they won’t be able to assign or unassign a role which will allow to do that. This is done to prevent escalation of privileges.需要连接
Update the user’s role assignments to match the provided set of UIDs. This will remove any assigned roles that aren’t in the request and add roles that are in the set but are not already assigned to the user. Roles mapped through group attribute sync are not impacted. If you want to add or remove a single role, consider using Add a user role assignment or Remove a user role assignment instead. You need to have a permission with action `users.roles:add` and `users.roles:remove` and scope `permissions:type:delegate` for each. `permissions:type:delegate` scope ensures that users can only assign or unassign roles which have same, or a subset of permissions which the user has. For example, if a user does not have required permissions for creating users, they won’t be able to assign or unassign a role which will allow to do that. This is done to prevent escalation of privileges.
认证
需要 Connected AccountTags
Star a dashboard.GRAFANA_STAR_DASHBOARD_BY_UIDStars the given Dashboard for the actual user.需要连接
Stars the given Dashboard for the actual user.
认证
需要 Connected AccountTags
Add star to query in query history.GRAFANA_STAR_QUERYAdds star to query in query history as specified by the UID.需要连接
Adds star to query in query history as specified by the UID.
认证
需要 Connected AccountTags
Test a recording rule.GRAFANA_TEST_CREATE_RECORDING_RULETest a recording rule.需要连接
Test a recording rule.
认证
需要 Connected AccountTags
Unstar a dashboard.GRAFANA_UNSTAR_DASHBOARD_BY_UIDDeletes the starring of the given Dashboard for the actual user.需要连接
Deletes the starring of the given Dashboard for the actual user.
认证
需要 Connected AccountTags
Remove star to query in query history.GRAFANA_UNSTAR_QUERYRemoves star from query in query history as specified by the UID.需要连接
Removes star from query in query history as specified by the UID.
认证
需要 Connected AccountTags
Update Annotation.GRAFANA_UPDATE_ANNOTATIONUpdates all properties of an annotation that matches the specified id. To only update certain property, consider using the Patch Annotation operation.需要连接
Updates all properties of an annotation that matches the specified id. To only update certain property, consider using the Patch Annotation operation.
认证
需要 Connected AccountTags
Updates a correlation.GRAFANA_UPDATE_CORRELATIONUpdates a correlation.需要连接
Updates a correlation.
认证
需要 Connected AccountTags
Update current Organization.GRAFANA_UPDATE_CURRENT_ORGUpdate current Organization.需要连接
Update current Organization.
认证
需要 Connected AccountTags
Update current Organization's address.GRAFANA_UPDATE_CURRENT_ORG_ADDRESSUpdate current Organization's address.需要连接
Update current Organization's address.
认证
需要 Connected AccountTags
Updates permissions for a dashboard.GRAFANA_UPDATE_DASHBOARD_PERMISSIONS_BY_UIDThis operation will remove existing permissions if they’re not included in the request.需要连接
This operation will remove existing permissions if they’re not included in the request.
认证
需要 Connected AccountTags
Update an existing data source.GRAFANA_UPDATE_DATA_SOURCE_BY_UIDSimilar to creating a data source, `password` and `basicAuthPassword` should be defined under secureJsonData in order to be stored securely as an encrypted blob in the database. Then, the encrypted fields are listed under secureJsonFields section in the response. If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:write` and scopes: `datasources:*`, `datasources:uid:*` and `datasources:uid:1` (single data source).需要连接
Similar to creating a data source, `password` and `basicAuthPassword` should be defined under secureJsonData in order to be stored securely as an encrypted blob in the database. Then, the encrypted fields are listed under secureJsonFields section in the response. If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `datasources:write` and scopes: `datasources:*`, `datasources:uid:*` and `datasources:uid:1` (single data source).
认证
需要 Connected AccountTags
Update folder.GRAFANA_UPDATE_FOLDERUse: /apis/folder.grafana.app/v1/namespaces/{ns}/folders/{folder_uid}需要连接
Use: /apis/folder.grafana.app/v1/namespaces/{ns}/folders/{folder_uid}
认证
需要 Connected AccountTags
Updates permissions for a folder. This operation will remove existing permissions if they’re not included in the request.GRAFANA_UPDATE_FOLDER_PERMISSIONSUpdates permissions for a folder. This operation will remove existing permissions if they’re not included in the request.需要连接
Updates permissions for a folder. This operation will remove existing permissions if they’re not included in the request.
认证
需要 Connected AccountTags
Update library element.GRAFANA_UPDATE_LIBRARY_ELEMENTUpdates an existing library element identified by uid.需要连接
Updates an existing library element identified by uid.
认证
需要 Connected AccountTags
Update Organization.GRAFANA_UPDATE_ORGUpdate Organization.需要连接
Update Organization.
认证
需要 Connected AccountTags
Update Organization's address.GRAFANA_UPDATE_ORG_ADDRESSUpdate Organization's address.需要连接
Update Organization's address.
认证
需要 Connected AccountTags
Update Current Org Prefs.GRAFANA_UPDATE_ORG_PREFERENCESUse /apis/preferences.grafana.app/v1/namespaces/{namespace}/preferences/namespace需要连接
Use /apis/preferences.grafana.app/v1/namespaces/{namespace}/preferences/namespace
认证
需要 Connected AccountTags
Update user quota.GRAFANA_UPDATE_ORG_QUOTAIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `orgs.quotas:write` and scope `org:id:1` (orgIDScope).需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `orgs.quotas:write` and scope `org:id:1` (orgIDScope).
认证
需要 Connected AccountTags
Update Users in Organization.GRAFANA_UPDATE_ORG_USERIf you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users.role:update` with scope `users:*`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users.role:update` with scope `users:*`.
认证
需要 Connected AccountTags
Updates the given user.GRAFANA_UPDATE_ORG_USER_FOR_CURRENT_ORGIf you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users.role:update` with scope `users:*`.需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled you need to have a permission with action: `org.users.role:update` with scope `users:*`.
认证
需要 Connected AccountTags
Update playlist.GRAFANA_UPDATE_PLAYLISTPlease refer to [new API](?api=playlist.grafana.app-v1).需要连接
Please refer to [new API](?api=playlist.grafana.app-v1).
认证
需要 Connected AccountTags
Update SSO SettingsGRAFANA_UPDATE_PROVIDER_SETTINGSInserts or updates the SSO Settings for a provider. You need to have a permission with action `settings:write` and scope `settings:auth.<provider>:*`.需要连接
Inserts or updates the SSO Settings for a provider. You need to have a permission with action `settings:write` and scope `settings:auth.<provider>:*`.
认证
需要 Connected AccountTags
UpdatePublicDashboardGRAFANA_UPDATE_PUBLIC_DASHBOARDUpdate public dashboard for a dashboard需要连接
Update public dashboard for a dashboard
认证
需要 Connected AccountTags
Update the active status of a rule.GRAFANA_UPDATE_RECORDING_RULEUpdate the active status of a rule.需要连接
Update the active status of a rule.
认证
需要 Connected AccountTags
Update a report.GRAFANA_UPDATE_REPORTAvailable to org admins only and with a valid or expired license. You need to have a permission with action `reports.admin:write` with scope `reports:id:<report ID>`. Requesting reports using the internal id will stop workgin in the future Use the reporting apiserver to manage reports. See: /apis/reporting.grafana.app/需要连接
Available to org admins only and with a valid or expired license. You need to have a permission with action `reports.admin:write` with scope `reports:id:<report ID>`. Requesting reports using the internal id will stop workgin in the future Use the reporting apiserver to manage reports. See: /apis/reporting.grafana.app/
认证
需要 Connected AccountTags
Update a custom role.GRAFANA_UPDATE_ROLEYou need to have a permission with action `roles:write` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only create custom roles with the same, or a subset of permissions which the user has.需要连接
You need to have a permission with action `roles:write` and scope `permissions:type:delegate`. `permissions:type:delegate` scope ensures that users can only create custom roles with the same, or a subset of permissions which the user has.
认证
需要 Connected AccountTags
Update service accountGRAFANA_UPDATE_SERVICE_ACCOUNTRequired permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:write` scope: `serviceaccounts:id:1` (single service account)需要连接
Required permissions (See note in the [introduction](https://grafana.com/docs/grafana/latest/developers/http_api/serviceaccount/#service-account-api) for an explanation): action: `serviceaccounts:write` scope: `serviceaccounts:id:1` (single service account)
认证
需要 Connected AccountTags
Update signed in User.GRAFANA_UPDATE_SIGNED_IN_USERUpdate signed in User.需要连接
Update signed in User.
认证
需要 Connected AccountTags
Update Team.GRAFANA_UPDATE_TEAMUpdate Team.需要连接
Update Team.
认证
需要 Connected AccountTags
Updates LBAC rules for a team.GRAFANA_UPDATE_TEAM_LBACRULES_APIUpdates LBAC rules for a team.需要连接
Updates LBAC rules for a team.
认证
需要 Connected AccountTags
Update Team Member.GRAFANA_UPDATE_TEAM_MEMBERUpdate Team Member.需要连接
Update Team Member.
认证
需要 Connected AccountTags
Update Team Preferences.GRAFANA_UPDATE_TEAM_PREFERENCESUpdate Team Preferences.需要连接
Update Team Preferences.
认证
需要 Connected AccountTags
Update user.GRAFANA_UPDATE_USERUpdate the user identified by id.需要连接
Update the user identified by id.
认证
需要 Connected AccountTags
Update user email.GRAFANA_UPDATE_USER_EMAILUpdate the email of user given a verification code.需要连接
Update the email of user given a verification code.
认证
需要 Connected AccountTags
Update user preferences.GRAFANA_UPDATE_USER_PREFERENCESUse /apis/preferences.grafana.app/v1/namespaces/{namespace}/preferences/user-{uid}需要连接
Use /apis/preferences.grafana.app/v1/namespaces/{namespace}/preferences/user-{uid}
认证
需要 Connected AccountTags
Update user quota.GRAFANA_UPDATE_USER_QUOTAIf you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.quotas:update` and scope `global.users:1` (userIDScope).需要连接
If you are running Grafana Enterprise and have Fine-grained access control enabled, you need to have a permission with action `users.quotas:update` and scope `global.users:1` (userIDScope).
认证
需要 Connected AccountTags
Upload a snapshot to the Grafana Migration Service for processing.GRAFANA_UPLOAD_SNAPSHOTUpload a snapshot to the Grafana Migration Service for processing.需要连接
Upload a snapshot to the Grafana Migration Service for processing.
认证
需要 Connected AccountTags
Switch user context for signed in user.GRAFANA_USER_SET_USING_ORGSwitch user context to the given organization.需要连接
Switch user context to the given organization.
认证
需要 Connected AccountTags
ViewPublicDashboardGRAFANA_VIEW_PUBLIC_DASHBOARDGet public dashboard for view需要连接
Get public dashboard for view
认证
需要 Connected AccountTags