Skip to documentation
Zoho Creator integration

Get Form Record

Perform Get Form Record through Zoho Creator.

View as Markdown
zoho_creator_get_form_record
writezoho_creator

Inputs

  • account_owner_name
    expressionrequired
    Account Owner Name

    Required literal value or workflow expression.

  • form_link_name
    expressionrequired
    Form Link Name

    Required literal value or workflow expression.

  • report_link_name
    expressionrequired
    Report Link Name

    Required literal value or workflow expression.

  • record_link_id
    expressionrequired
    Record Link Id

    Required literal value or workflow expression.

  • field_link_names
    jsonrequired
    Field Link Names

    Required JSON value.

Outputs

  • successSuccess
  • record_idRecord Id
  • record_link_idRecord Link Id
  • valuesValues
  • 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",
    "form_link_name",
    "report_link_name",
    "record_link_id",
    "field_link_names"
  ],
  "properties": {
    "form_link_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "record_link_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "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": {
    "error": {},
    "values": {},
    "success": {},
    "record_id": {},
    "record_link_id": {}
  },
  "additionalProperties": true
}
View all Zoho Creator actions