Import Report Attachment
Perform Import Report Attachment through Zoho Creator.
zoho_creator_import_report_attachmentInputs
- Account Owner Name
account_owner_nameexpressionrequiredRequired literal value or workflow expression.
- Report Link Name
report_link_nameexpressionrequiredRequired literal value or workflow expression.
- Record Id
record_idexpressionrequiredRequired literal value or workflow expression.
- Field Link Name
field_link_nameexpressionrequiredRequired literal value or workflow expression.
- Attachment Index
attachment_indexnumberOptional numeric value.
Default:
0 - Max Records
max_recordsnumberOptional numeric value.
Default:
100 - Max Bytes
max_bytesnumberOptional numeric value.
Default:
26214400 - Document Type
document_typeselectOptional 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_inboxbooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessdocument_idDocument IdtitleTitlemime_typeMime Typesha256Sha256sizeSizewas_existingWas Existingrecord_idRecord Idfield_link_nameField Link NameerrorError
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
}