Get Form Record
Perform Get Form Record through Zoho Creator.
zoho_creator_get_form_recordwritezoho_creator
Inputs
- Account Owner Name
account_owner_nameexpressionrequiredRequired literal value or workflow expression.
- Form Link Name
form_link_nameexpressionrequiredRequired literal value or workflow expression.
- Report Link Name
report_link_nameexpressionrequiredRequired literal value or workflow expression.
- Record Link Id
record_link_idexpressionrequiredRequired literal value or workflow expression.
- Field Link Names
field_link_namesjsonrequiredRequired JSON value.
Outputs
successSuccessrecord_idRecord Idrecord_link_idRecord Link IdvaluesValueserrorError
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
}