Workflow

A workflow summary. Timestamps are ISO 8601 UTC; `last_run_at` is `null` until the first run.

Properties

workflow_idstring <uuid>required

UUID of the workflow. Use this with every endpoint that takes `{workflow_id}`.

namestringrequired

Workflow name as set at creation.

created_atstring <date-time>required

UTC timestamp (ISO 8601) when the workflow was created.

updated_atstring <date-time>required

UTC timestamp (ISO 8601) of the most recent configuration change (name, inputs, actions, sheet settings).

last_run_atnull | string <date-time>required

UTC timestamp (ISO 8601) of the most recent run queued on any sheet in this workflow. `null` if the workflow has never been run.

Example

Workflow example
{
  "workflow_id": "00000000-0000-0000-0000-000000000000",
  "name": "string",
  "created_at": "1970-01-01T00:00:00.000Z",
  "updated_at": "1970-01-01T00:00:00.000Z",
  "last_run_at": null
}