{ "opencollection": "1.0.0", "info": { "name": "Grafana HTTP Access Password API", "version": "11.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Password", "type": "folder" }, "items": [ { "info": { "name": "Grafana Admin Update User Password", "type": "http" }, "http": { "method": "PUT", "url": "https://{instance}.grafana.net/api/admin/users/:user_id/password", "params": [ { "name": "user_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "This API operation allows Grafana administrators to programmatically update the password for a specific user account by sending a PUT request to the endpoint with the target user's ID. The administrator must provide the new password in the request body, and this action requires admin-level privileges to execute. This operation is particularly useful for password resets, account recovery scenarios, or when administrators need to enforce password changes for security purposes without requiring the" }, { "info": { "name": "Grafana Change User Password", "type": "http" }, "http": { "method": "PUT", "url": "https://{instance}.grafana.net/api/user/password", "body": { "type": "json", "data": "{}" } }, "docs": "Changes the password for the currently authenticated user in Grafana. This endpoint requires the user to provide their current password along with the new password they wish to set. The operation is performed as a PUT request to the /user/password endpoint and can only modify the password of the user making the request, not other users in the system. Authentication is required to access this endpoint, and the request must include both the old password for verification and the new password that m" } ] } ], "bundled": true }