BetterCloud · Schema

WorkflowCreateRequest

Request body for creating a workflow.

AutomationComplianceEnterpriseIT OperationsSaaS ManagementSecurityWorkflowsUser Lifecycle

Properties

Name Type Description
name string Name of the workflow.
description string Description of the workflow.
trigger_type string Trigger type for the workflow.
status string Initial status.
View JSON Schema on GitHub

JSON Schema

bettercloud-workflow-create-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bettercloud/refs/heads/main/json-schema/bettercloud-workflow-create-request-schema.json",
  "title": "WorkflowCreateRequest",
  "description": "Request body for creating a workflow.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the workflow.",
      "example": "New Employee Onboarding"
    },
    "description": {
      "type": "string",
      "description": "Description of the workflow.",
      "example": "Automated onboarding workflow for new hires"
    },
    "trigger_type": {
      "type": "string",
      "description": "Trigger type for the workflow.",
      "enum": [
        "manual",
        "event",
        "scheduled"
      ],
      "example": "event"
    },
    "status": {
      "type": "string",
      "description": "Initial status.",
      "enum": [
        "active",
        "draft"
      ],
      "example": "draft"
    }
  },
  "required": [
    "name"
  ]
}