Input
A single configured input field on a workflow sheet. Each input becomes a column in the sheet's data table and gets a `reference` token that downstream actions can use to pull the value.
Properties
namestringrequiredInput field name. Unique within the sheet. Used to build the `reference` token.
typestringrequiredInput data type. One of: `string`, `url`, `email`, `number`.
"string""url""email""number"descriptionstringrequiredHuman-readable description of the input. Empty string when not set.
referencestringrequiredVariable reference token. Use this value in downstream action `inputString`s to pull the input's value at run time. Always of the form `{{input.<name>}}`.
Example
Input example
{
"name": "linkedin_url",
"type": "url",
"description": "LinkedIn company profile URL",
"reference": "{{input.linkedin_url}}"
}