# <a id="bitdrift.public.webhook.v1.SessionCaptureNotification"></a>SessionCaptureNotification

**Source definition:** [`src/bitdrift/public/webhook/v1/notification.proto#L47-L65`](<https://github.com/bitdriftlabs/api/blob/main/src/bitdrift/public/webhook/v1/notification.proto#L47-L65>)

Describes a webhook notification for a captured workflow session.

<section class="proto-fields-table" markdown>
| Field | Type | Description |
|---|---|---|
| timeline_url | <span class="proto-type proto-type-primitive">string</span> | Timeline URL for the captured session. |
| workflow_url | <span class="proto-type proto-type-primitive">string</span> | Workflow URL for the captured session. |
| session_id | <span class="proto-type proto-type-primitive">string</span> | Session identifier. |
| exploration_name | <span class="proto-type proto-type-primitive">string</span> | Exploration name. |
| workflow_name | <span class="proto-type proto-type-primitive">string</span> | Workflow name. |
| rule_title | <span class="proto-type proto-type-primitive">string</span> | Title of the workflow session capture node that triggered the capture. |

</section>
<p class="h4">Example</p>
```json
{
  "exploration_name": "Checkout Funnel",
  "rule_title": "Capture recent sessions",
  "session_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "timeline_url": "https://app.bitdrift.io/timelines/tl_123",
  "workflow_name": "Payment Failures",
  "workflow_url": "https://app.bitdrift.io/workflows/wf_123"
}
```

