UiPath · Schema

UpdateAutomationRequest

Request payload for partially updating an automation record

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
phase string Updated pipeline phase for the automation
status string Updated status within the current phase
description string Updated description of the automation
estimatedBenefit object
View JSON Schema on GitHub

JSON Schema

automation-hub-update-automation-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-schema/automation-hub-update-automation-request-schema.json",
  "title": "UpdateAutomationRequest",
  "description": "Request payload for partially updating an automation record",
  "type": "object",
  "properties": {
    "phase": {
      "type": "string",
      "enum": [
        "Idea",
        "Assessment",
        "Analysis",
        "Development",
        "Testing",
        "Production",
        "OnHold",
        "Rejected"
      ],
      "description": "Updated pipeline phase for the automation",
      "example": "Idea"
    },
    "status": {
      "type": "string",
      "description": "Updated status within the current phase",
      "example": "Active"
    },
    "description": {
      "type": "string",
      "description": "Updated description of the automation",
      "example": "Example description for this resource."
    },
    "estimatedBenefit": {
      "$ref": "#/components/schemas/BenefitData"
    }
  }
}