# GET /api/v1/attention

> List attention items

- **Tag:** attention
- **Operation ID:** `list_attention_api_v1_attention_get`

## Description

Get the merged list of inbox messages and live alerts. Items are sorted with action-required first, then by priority, then newest first. Inbox messages support cursor pagination; live alerts are always returned in full on the first page.

## Authentication

Bearer token in `Authorization` header.
Required header: `x-business-id: <business uuid>`.

## Parameters

- `action_required` (query, boolean, optional) — Only show items requiring user action.
- `category` (query, string, optional) — Filter by category.
- `priority` (query, string, optional) — Filter by priority.
- `entity_type` (query, string, optional) — Filter by entity type.
- `unread_only` (query, boolean, optional) — Hide read inbox messages and dismissed live alerts.
- `include_live` (query, boolean, optional) — Include live (computed) alerts alongside inbox rows.
- `client_view` (query, boolean, optional) — If true, action URLs use the ``/client`` shell prefix instead of ``/books``.
- `cursor` (query, string, optional) — Inbox pagination cursor.
- `limit` (query, integer, optional) — Max inbox items per page.

## Responses

### 200 — Successful Response

Schema: `SuccessEnvelope_AttentionListResponse_`

- `success` (boolean)
- `message` (string)
- `code` (string)
- `data` (AttentionListResponse)

### 401 — Unauthorized - Authentication required

### 422 — Validation Error

Schema: `HTTPValidationError`

- `detail` (array · ValidationError) → `ValidationError`
  - `loc` (array · string | integer · required)
  - `msg` (string · required)
  - `type` (string · required)
  - `input` (object)
  - `ctx` (object)

## Code samples

### cURL

```bash
curl -X GET 'https://api.ondayzero.com/api/v1/attention' \
  -H 'Authorization: Bearer dz_your_token' \
  -H 'x-business-id: YOUR_BUSINESS_ID'
```

### JavaScript

```javascript
const response = await fetch('https://api.ondayzero.com/api/v1/attention', {
  method: 'GET',
  headers: {
    Authorization: 'Bearer dz_your_token',
    'x-business-id': 'YOUR_BUSINESS_ID',
  },
});
const data = await response.json();
```

### Python

```python
import httpx

headers = {
    "Authorization": "Bearer dz_your_token",
    "x-business-id": "YOUR_BUSINESS_ID",
}

response = httpx.get("https://api.ondayzero.com/api/v1/attention", headers=headers)
data = response.json()
```

## See also

- HTML version: https://www.ondayzero.com/docs/reference/attention/list-attention
- OpenAPI slice: https://www.ondayzero.com/docs/reference/attention/list-attention/openapi.json
- Other endpoints in **attention**: https://www.ondayzero.com/docs/reference/attention
