Trigger

Trigger

Certified

Trigger a Temporal workflow execution.

yaml
type: io.kestra.plugin.temporal.workflow.Trigger
yaml
id: trigger_order_workflow
namespace: company.team

tasks:
  - id: start
    type: io.kestra.plugin.temporal.workflow.Trigger
    endpoint: "localhost:7233"
    namespace: "default"
    workflowType: "OrderWorkflow"
    taskQueue: "order-queue"
    workflowId: "order-{{ execution.id }}"
    input:
      - '{"orderId": "ORD-123", "amount": 99.99}'
    executionTimeout: "PT1H"

yaml
id: trigger_cloud_workflow
namespace: company.team

tasks:
  - id: start
    type: io.kestra.plugin.temporal.workflow.Trigger
    endpoint: "myns.tmprl.cloud:7233"
    namespace: "myns.accountId"
    apiKey: "{{ secret('TEMPORAL_API_KEY') }}"
    workflowType: "OrderWorkflow"
    taskQueue: "order-queue"
Properties
SubTypestring