# Read Document Information

> Perform Read Document Information through DocuTrack.

Source: [https://genhealth.ai/docs/workflows/integrations/docu-track/docutrack_read_document](https://genhealth.ai/docs/workflows/integrations/docu-track/docutrack_read_document)

Integration: [DocuTrack](https://genhealth.ai/docs/workflows/integrations/docu-track.md)

- Handler: `docutrack_read_document`

- Connection type: `docutrack`

## Inputs

- `docutrack_document_id` — Docutrack Document Id (expression, required)
  Required literal value or workflow expression.
- `folder_id` — Folder Id (number)
  Optional numeric value.

## Outputs

- `success` — Success
- `document` — Document
- `error` — Error

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": [
    "docutrack_document_id"
  ],
  "properties": {
    "folder_id": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "docutrack_document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "document": {}
  },
  "additionalProperties": true
}
```
