list_oncall_users
Retrieve on-call users from Grafana OnCall, including all users, specific users by ID, or filtered by username with pagination support.
Instructions
List users from Grafana OnCall. Can retrieve all users, a specific user, or filter by username
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | The page number to return | |
userId | No | The ID of a specific user to retrieve | |
username | No | Username to filter by |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"description": "The page number to return",
"type": "number"
},
"userId": {
"description": "The ID of a specific user to retrieve",
"type": "string"
},
"username": {
"description": "Username to filter by",
"type": "string"
}
},
"type": "object"
}