Actions API

Track and manage individual workflow actions and their execution status

Available Endpoints

The Action Object

hashid string

System-generated unique identifier

completed_at string

Completed at in specified timezone

completed_at_string string

Completed at formatted as human-readable string

completed_at_utc string

Completed at in UTC

execution_id string

ID of the execution this action belongs to

failed_at string

Failed at in specified timezone

failed_at_string string

Failed at formatted as human-readable string

failed_at_utc string

Failed at in UTC

failure_note string

Error message when action fails

log object

Execution log details for the action

name string

Name of the action

node_id string

Node identifier associated with this action

object string

Object type identifier

run_at string

Run at in specified timezone

run_at_string string

Run at formatted as human-readable string

run_at_utc string

Run at in UTC

status string

Current status of the action

stopped_at string

Stopped at in specified timezone

stopped_at_string string

Stopped at formatted as human-readable string

stopped_at_utc string

Stopped at in UTC

uuid string

UUID identifier for the action

Action Object
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "hashid": "v4b58",
  "completed_at": null,
  "completed_at_string": null,
  "completed_at_utc": null,
  "execution_id": "01980228-9a8a-7147-aa65-16bc2f3412a1",
  "failed_at": null,
  "failed_at_string": null,
  "failed_at_utc": null,
  "failure_note": null,
  "log": {},
  "name": "E",
  "node_id": "iVtXbw",
  "object": "action",
  "run_at": null,
  "run_at_string": null,
  "run_at_utc": null,
  "status": "idle",
  "stopped_at": null,
  "stopped_at_string": null,
  "stopped_at_utc": null,
  "uuid": "01980228-9ae0-7b7c-ba7d-3798b42882ee"
}