Skip to content

Workflow Outcomes

Entity workflows have two outcomes: success or failure

  • label: string used to define the outcome label in the UI
  • position
    • x: x-axis
    • y: y-axis

Example

{
  "outcome": {
    "success": {
      "label": "Completed",
      "position": {
        "x": 750,
        "y": -30
      }
    },
    "failure": {
      "label": "Cancelled",
      "position": {
        "x": 750,
        "y": 235
      }
    }
  }
}