> ## Documentation Index
> Fetch the complete documentation index at: https://notte-experiment-visibility-md-links.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# SmsReadAction

> Read sms messages received recently

**Example:**

```python theme={null}
import datetime as dt

session.execute(type="sms_read", limit=10, only_unread=True)
session.execute(type="sms_read", timedelta=dt.timedelta(minutes=5))
```

## Fields

<ParamField path="type" type="Literal['sms_read']" default="sms_read" />

<ParamField path="category" type="str" default="Special Browser Actions" />

<ParamField path="description" type="str" default="Read sms messages received recently." />

<ParamField path="limit" type="int" default="10">
  Max number of sms to return
</ParamField>

<ParamField path="timedelta" type="UnionType[timedelta, None]" default="0:05:00">
  Return only sms that are not older than `timedelta`
</ParamField>

<ParamField path="only_unread" type="bool" default="True">
  Return only previously unread sms
</ParamField>

## Module

`notte_core.actions.actions`
