InputCreate

An input field to add to a workflow sheet. `reference` is server-computed from `name` and is never accepted on the request.

Properties

namestringrequired

Field name — used as the column header and as the key when adding data rows. Must be unique within the sheet.

typestringrequired

Data type. Helps agents match fields to action inputs (e.g. an action that needs a URL can search for `type: url`). One of: `string`, `url`, `email`, `number`.

"string""url""email""number"
descriptionstring

Human-readable description of what this field contains.

Example

InputCreate example
{
  "name": "linkedin_url",
  "type": "url",
  "description": "LinkedIn company profile URL"
}