@@ -59489,6 +59489,8 @@ components:
5948959489 oneOf:
5949059490 - $ref: "#/components/schemas/SendSlackMessageAction"
5949159491 - $ref: "#/components/schemas/SendTeamsMessageAction"
59492+ - $ref: "#/components/schemas/TriggerWorkflowAutomationAction"
59493+ - $ref: "#/components/schemas/WebhookAction"
5949259494 RoutingRuleAttributes:
5949359495 description: Defines the configurable attributes of a routing rule, such as actions, query, time restriction, and urgency.
5949459496 properties:
@@ -79228,6 +79230,28 @@ components:
7922879230 type: string
7922979231 x-enum-varnames:
7923079232 - MONITOR_ALERT_TRIGGER
79233+ TriggerWorkflowAutomationAction:
79234+ description: "Triggers a Workflow Automation."
79235+ properties:
79236+ handle:
79237+ description: "The handle of the Workflow Automation to trigger."
79238+ example: my-workflow-handle
79239+ type: string
79240+ type:
79241+ $ref: "#/components/schemas/TriggerWorkflowAutomationActionType"
79242+ required:
79243+ - type
79244+ - handle
79245+ type: object
79246+ TriggerWorkflowAutomationActionType:
79247+ default: workflow
79248+ description: "Indicates that the action triggers a Workflow Automation."
79249+ enum:
79250+ - workflow
79251+ example: workflow
79252+ type: string
79253+ x-enum-varnames:
79254+ - TRIGGER_WORKFLOW_AUTOMATION
7923179255 UCConfigPair:
7923279256 description: The definition of `UCConfigPair` object.
7923379257 example:
@@ -82522,6 +82546,28 @@ components:
8252282546 type: string
8252382547 x-enum-varnames:
8252482548 - RUM_REPLAY_WATCHER
82549+ WebhookAction:
82550+ description: "Sends a request to a webhook."
82551+ properties:
82552+ handle:
82553+ description: "The handle of the webhook to send the request to."
82554+ example: my-webhook-handle
82555+ type: string
82556+ type:
82557+ $ref: "#/components/schemas/WebhookActionType"
82558+ required:
82559+ - type
82560+ - handle
82561+ type: object
82562+ WebhookActionType:
82563+ default: webhook
82564+ description: "Indicates that the action sends a request to a webhook."
82565+ enum:
82566+ - webhook
82567+ example: webhook
82568+ type: string
82569+ x-enum-varnames:
82570+ - WEBHOOK
8252582571 Weekday:
8252682572 description: A day of the week.
8252782573 enum:
0 commit comments