> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Log Entry

Get details for a specific incident log entry. This method provides additional information you can use to get at raw event data.

A log of all the events that happen to an Incident, and these are exposed as Log Entries.

For more information see the ![API Concepts Document](https://developer.pagerduty.com/api-reference/ZG9jOjI3NDc5Nzc-api-concepts#log-entries).

## Parameters

<div className="integrations-table">
  | Parameter | Description                                              |
  | --------- | -------------------------------------------------------- |
  | ID        | The id of the log to retrieve.                           |
  | Include   | Array of additional Models to include in response.       |
  | Time Zone | Time zone in which dates in the result will be rendered. |
</div>

## Example Output

```json theme={"dark"}
{
	"summary": "Response Example",
	"value": {
		"log_entry": {
			"agent": {
				"html_url": "https://subdomain.pagerduty.com/services/PIJ90N7",
				"id": "PIJ90N7",
				"self": "https://api.pagerduty.com/services/PIJ90N7",
				"summary": "My Mail Service",
				"type": "service_reference"
			},
			"channel": {
				"type": "api"
			},
			"contexts": [],
			"created_at": "2015-11-07T00:14:20Z",
			"event_details": {
				"description": "Tasks::SFDCValidator - PD_Data__c - duplicates"
			},
			"html_url": "https://subdomain.pagerduty.com/incidents/PT4KHLK/log_entries/Q02JTSNZWHSEKV",
			"id": "Q02JTSNZWHSEKV",
			"incident": {
				"html_url": "https://subdomain.pagerduty.com/incidents/PT4KHLK",
				"id": "PT4KHLK",
				"self": "https://api.pagerduty.com/incidents/PT4KHLK",
				"summary": "[#1234] The server is on fire.",
				"type": "incident_reference"
			},
			"self": "https://api.pagerduty.com/log_entries/Q02JTSNZWHSEKV?incident_id=PT4KHLK",
			"summary": "Triggered through the API",
			"teams": [
				{
					"html_url": "https://subdomain.pagerduty.com/teams/PQ9K7I8",
					"id": "PQ9K7I8",
					"self": "https://api.pagerduty.com/teams/PQ9K7I8",
					"summary": "Engineering",
					"type": "team_reference"
				}
			],
			"type": "trigger_log_entry"
		}
	}
}
```

## Workflow Library Example

[Get Log Entry with Pagerduty and Send Results Via Email](https://library.blinkops.com/workflows/get-log-entry-with-pagerduty-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-log-entry-with-pagerduty-and-send-results-via-email/canvas" />
</div>
