WorkflowOverview
Operational info for a workflow: metadata (same fields as List Workflows), sheet roster with settings and webhook URLs, and shared users.
Properties
workflow_idstring <uuid>requiredUUID of the parent workflow.
namestringrequiredWorkflow name as set at creation.
created_atstring <date-time>requiredUTC timestamp (ISO 8601) when the workflow was created.
updated_atstring <date-time>requiredUTC timestamp (ISO 8601) of the most recent configuration change (name, inputs, actions, sheet settings).
last_run_atnull | string <date-time>requiredUTC timestamp (ISO 8601) of the most recent run queued on any sheet in this workflow. `null` if the workflow has never been run.
is_ownerbooleanrequired`true` when the caller is the workflow owner. `shared_users` is populated only when this is `true`.
shared_usersarray ofrequiredEmails the workflow is shared with. Populated only when `is_owner` is `true`; otherwise `[]`.
sheetsarray ofrequiredEvery sheet in the workflow with its settings and webhook URL. `sheets[0]` is the main sheet.
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,
"is_owner": false,
"shared_users": [
"user@example.com"
],
"sheets": [
{
"sheet_id": "00000000-0000-0000-0000-000000000000",
"name": "string",
"is_main_sheet": false,
"auto_run": false,
"cache_enabled": false,
"cache_since": null,
"webhook_url": null
}
]
}