Skip to documentation
Zoho Creator integration

List Report Records

Perform List Report Records through Zoho Creator.

View as Markdown
zoho_creator_list_report_records
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.

  • field_link_names
    jsonrequired
    Field Link Names

    Required JSON value.

  • max_records
    number
    Max Records

    Optional numeric value.

    Default: 100

  • page_size
    number
    Page Size

    Optional numeric value.

    Default: 50

Outputs

  • successSuccess
  • recordsRecords
  • countCount
  • 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",
    "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
}
View all Zoho Creator actions