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

namestringrequired

Input field name. Unique within the sheet. Used to build the `reference` token.

typestringrequired

Input data type. One of: `string`, `url`, `email`, `number`.

"string""url""email""number"
descriptionstringrequired

Human-readable description of the input. Empty string when not set.

referencestringrequired

Variable 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}}"
}