# Import Report Attachment

> Perform Import Report Attachment through Zoho Creator.

Source: [https://genhealth.ai/docs/workflows/integrations/zoho-creator/zoho_creator_import_report_attachment](https://genhealth.ai/docs/workflows/integrations/zoho-creator/zoho_creator_import_report_attachment)

Integration: [Zoho Creator](https://genhealth.ai/docs/workflows/integrations/zoho-creator.md)

- Handler: `zoho_creator_import_report_attachment`

- Connection type: `zoho_creator`

## Inputs

- `account_owner_name` — Account Owner Name (expression, required)
  Required literal value or workflow expression.
- `report_link_name` — Report Link Name (expression, required)
  Required literal value or workflow expression.
- `record_id` — Record Id (expression, required)
  Required literal value or workflow expression.
- `field_link_name` — Field Link Name (expression, required)
  Required literal value or workflow expression.
- `attachment_index` — Attachment Index (number)
  Optional numeric value.
  Default: `0`
- `max_records` — Max Records (number)
  Optional numeric value.
  Default: `100`
- `max_bytes` — Max Bytes (number)
  Optional numeric value.
  Default: `26214400`
- `document_type` — Document Type (select)
  Optional selected identifier or value.
  Default: `"Other"`
  Options: Prescription ("Prescription"), Demographics ("Demographics"), Insurance ("Insurance"), Qualifying Test ("Qualifying Test"), Physician Notes ("Physician Notes"), Other ("Other")
- `show_imported_document_in_inbox` — Show Imported Document In Inbox (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `document_id` — Document Id
- `title` — Title
- `mime_type` — Mime Type
- `sha256` — Sha256
- `size` — Size
- `was_existing` — Was Existing
- `record_id` — Record Id
- `field_link_name` — Field Link Name
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

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

## Schemas

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

### Input schema

```json
{
  "type": "object",
  "required": [
    "account_owner_name",
    "report_link_name",
    "record_id",
    "field_link_name"
  ],
  "properties": {
    "max_bytes": {
      "type": "number",
      "default": 26214400,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "record_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "max_records": {
      "type": "number",
      "default": 100,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "document_type": {
      "enum": [
        "Prescription",
        "Demographics",
        "Insurance",
        "Qualifying Test",
        "Physician Notes",
        "Other"
      ],
      "type": "string",
      "default": "Other",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "field_link_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "attachment_index": {
      "type": "number",
      "default": 0,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "report_link_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "account_owner_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "show_imported_document_in_inbox": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "size": {},
    "error": {},
    "title": {},
    "sha256": {},
    "success": {},
    "mime_type": {},
    "record_id": {},
    "document_id": {},
    "was_existing": {},
    "field_link_name": {}
  },
  "additionalProperties": true
}
```
