Skip to documentation
Zoho Creator integration

Import Report Attachment

Perform Import Report Attachment through Zoho Creator.

View as Markdown
zoho_creator_import_report_attachment
writezoho_creator

Inputs

  • account_owner_name
    expressionrequired
    Account Owner Name

    Required literal value or workflow expression.

  • report_link_name
    expressionrequired
    Report Link Name

    Required literal value or workflow expression.

  • record_id
    expressionrequired
    Record Id

    Required literal value or workflow expression.

  • field_link_name
    expressionrequired
    Field Link Name

    Required literal value or workflow expression.

  • attachment_index
    number
    Attachment Index

    Optional numeric value.

    Default: 0

  • max_records
    number
    Max Records

    Optional numeric value.

    Default: 100

  • max_bytes
    number
    Max Bytes

    Optional numeric value.

    Default: 26214400

  • document_type
    select
    Document Type

    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
    boolean
    Show Imported Document In Inbox

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • document_idDocument Id
  • titleTitle
  • mime_typeMime Type
  • sha256Sha256
  • sizeSize
  • was_existingWas Existing
  • record_idRecord Id
  • field_link_nameField Link Name
  • errorError

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
{
  "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
{
  "type": "object",
  "properties": {
    "size": {},
    "error": {},
    "title": {},
    "sha256": {},
    "success": {},
    "mime_type": {},
    "record_id": {},
    "document_id": {},
    "was_existing": {},
    "field_link_name": {}
  },
  "additionalProperties": true
}
View all Zoho Creator actions