List Report Records
Perform List Report Records through Zoho Creator.
zoho_creator_list_report_recordswritezoho_creator
Inputs
- Account Owner Name
account_owner_nameexpressionrequiredRequired literal value or workflow expression.
- Report Link Name
report_link_nameexpressionrequiredRequired literal value or workflow expression.
- Field Link Names
field_link_namesjsonrequiredRequired JSON value.
- Max Records
max_recordsnumberOptional numeric value.
Default:
100 - Page Size
page_sizenumberOptional numeric value.
Default:
50
Outputs
successSuccessrecordsRecordscountCounterrorError
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",
"field_link_names"
],
"properties": {
"page_size": {
"type": "number",
"default": 50,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"max_records": {
"type": "number",
"default": 100,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"field_link_names": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"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"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"records": {},
"success": {}
},
"additionalProperties": true
}