---
title: "Create Orchestration"
method: POST
path: "/orchestrations"
tags: ["Orchestrations"]
---

# Create Orchestration

`POST /orchestrations`

Create a new Orchestration with the given name and cron schedule.

## Request body

- OrchestrationCreateRequestDto
  - `name` string, required — The name of the Orchestration.
  - `cron_expression` string, required — Cron expression defining when the Orchestration runs.
  - `description` string — The description of the Orchestration.

## Response `201`

The Orchestration has been successfully created.

- OrchestrationDto
  - `id` string, required — The Id of the Orchestration.
  - `name` string, required — The name of the Orchestration.
  - `cron_expression` string, required — The cron expression defining when the Orchestration runs.
  - `description` string, nullable, required — The description of the Orchestration.
  - `active` boolean, required — Whether the Orchestration is active.

---

[API](https://skmtc.net/weld/apis/weld-rest-api.md) · [All operations](https://skmtc.net/weld/apis/weld-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/weld/weld-rest-api/revisions/75294f591cc2/schema)
