# Read Document Timeline Items

> Perform Read Document Timeline Items through athenahealth.

Source: [https://genhealth.ai/docs/workflows/integrations/athenahealth/athena_read_document_timeline_items](https://genhealth.ai/docs/workflows/integrations/athenahealth/athena_read_document_timeline_items)

Integration: [athenahealth](https://genhealth.ai/docs/workflows/integrations/athenahealth.md)

- Handler: `athena_read_document_timeline_items`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.
- `chart_id` — Chart Id (expression, required)
  Required literal value or workflow expression.
- `department_id` — Department Id (expression, required)
  Required literal value or workflow expression.
- `categories` — Categories (expression)
  Optional literal value or workflow expression.
- `briefing` — Briefing (boolean)
  Optional true-or-false value.
  Default: `true`

## Outputs

- `success` — Success
- `document_id` — Document Id
- `chart_id` — Chart Id
- `department_id` — Department Id
- `timeline_item_count` — Timeline Item Count
- `count` — Count
- `timeline_items` — Timeline Items
- `categories` — Categories
- `briefing` — Briefing
- `error` — Error
- `error_message` — Error Message

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `read`
- Confirmation recommended: no
- Retry safe: yes
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "document_id",
    "chart_id",
    "department_id"
  ],
  "properties": {
    "briefing": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "chart_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "categories": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "department_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "success": {},
    "briefing": {},
    "chart_id": {},
    "categories": {},
    "document_id": {},
    "department_id": {},
    "error_message": {},
    "timeline_items": {},
    "timeline_item_count": {}
  },
  "additionalProperties": true
}
```
