BetterCloud · JSON Structure

Bettercloud Workflow Run Response Structure

Response from triggering a workflow execution.

Type: object Properties: 1
AutomationComplianceEnterpriseIT OperationsSaaS ManagementSecurityWorkflowsUser Lifecycle

WorkflowRunResponse is a JSON Structure definition published by BetterCloud, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

data

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bettercloud/refs/heads/main/json-structure/bettercloud-workflow-run-response-structure.json",
  "name": "WorkflowRunResponse",
  "description": "Response from triggering a workflow execution.",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "execution_id": {
          "type": "string",
          "description": "Unique ID of this workflow execution.",
          "example": "exec-900100"
        },
        "workflow_id": {
          "type": "string",
          "description": "ID of the workflow being executed.",
          "example": "wf-100200"
        },
        "status": {
          "type": "string",
          "description": "Current execution status.",
          "enum": [
            "pending",
            "running",
            "completed",
            "failed"
          ],
          "example": "running"
        },
        "started_at": {
          "type": "datetime",
          "description": "When the execution started.",
          "example": "2026-04-19T10:00:00Z"
        }
      }
    }
  }
}