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

# get_subscription_last_run

> Most recent dispatched digest for a subscription.

Cheaper than re-running the heavy report query — answers "what was in my Monday digest?" without paying for fresh data.

## Parameters

| Parameter         | Type    | Required | Description                         |
| ----------------- | ------- | -------- | ----------------------------------- |
| `subscription_id` | integer | Yes      |                                     |
| `format`          | string  | No       | `json` (default), `csv`, or `yaml`. |

## Output

```json theme={null}
{
  "id": 17,
  "type": "App\\Notifications\\NotificationSubscriptions\\ReportNotification",
  "user_id": 42,
  "last_notified_at": "2026-05-13T09:00:00Z",
  "data": { "report_id": 42, "channel": "slack", "cadence": "weekly" }
}
```
