list_users_oncall
Retrieve users on call for a specific PagerDuty schedule within a defined time range by providing the schedule ID, start time, and end time in ISO8601 format.
Instructions
List the users on call for a schedule during the specified time range.
Args: schedule_id (str): The ID of the schedule to query since (str): Start of query range in ISO8601 format until (str): End of query range in ISO8601 format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schedule_id | Yes | ||
since | No | ||
until | No |
Input Schema (JSON Schema)
{
"properties": {
"schedule_id": {
"title": "Schedule Id",
"type": "string"
},
"since": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Since"
},
"until": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Until"
}
},
"required": [
"schedule_id"
],
"type": "object"
}