PAGERDUTY_GET_LOG_ENTRIES

Retrieves log entries from the PagerDuty system, providing a detailed history of events and actions related to incidents and system activities. This endpoint is crucial for auditing purposes, allowing users to track changes, responses, and other important events within their incident management workflow. It supports filtering by date range and specific incidents, making it useful for both broad overview analysis and detailed incident investigations. The endpoint uses pagination to manage large sets of log entries, ensuring efficient data retrieval and processing.

Available from 1 provider (1 remote)

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "title": "Limit",
      "description": "The number of results per page."
    },
    "since": {
      "type": "string",
      "title": "Since",
      "description": "The start of the date range over which you want to search."
    },
    "total": {
      "type": "boolean",
      "title": "Total",
      "default": false,
      "description": "By default the `total` field in pagination responses is set to `null` to provide the fastest possible response times. Set `total` to `true` for this field to be populated. See our [Pagination Docs](https://developer.pagerduty.com/docs/rest-api-v2/pagination/) for more information.  "
    },
    "until": {
      "type": "string",
      "title": "Until",
      "description": "The end of the date range over which you want to search."
    },
    "offset": {
      "type": "integer",
      "title": "Offset",
      "description": "Offset to start pagination search results."
    },
    "include": {
      "enum": [
        "incidents",
        "services",
        "channels",
        "teams"
      ],
      "type": "string",
      "title": "Include",
      "description": "Array of additional Models to include in response."
    },
    "team__ids": {
      "type": "array",
      "items": {
        "type": "string",
        "properties": {}
      },
      "title": "Team  Ids",
      "description": "An array of team IDs. Only results related to these teams will be returned. Account must have the `teams` ability to use this parameter. "
    },
    "time_zone": {
      "type": "string",
      "title": "Time Zone",
      "description": "Time zone in which results will be rendered. This will default to the account time zone. "
    },
    "is_overview": {
      "type": "boolean",
      "title": "Is Overview",
      "default": false,
      "description": "If `true`, will return a subset of log entries that show only the most important changes to the incident. "
    }
  }
}
          

Remote Providers (1)

These servers are accessible over the network — no local installation needed.

PagerDuty

Remote

pagerduty

View product →