---
title: "Create Workflow"
method: POST
path: "/api/v1/workflow/create/definition"
tags: ["main"]
---

# Create Workflow

`POST /api/v1/workflow/create/definition`

Create a new workflow from the client

Args:
    request: The create workflow request
    user: The user to create the workflow for

## Headers

- `authorization` string, nullable
- `X-API-Key` string, nullable

## Request body

- CreateWorkflowRequest
  - `name` string, required
  - `workflow_definition` object, required

## Response `200`

Successful Response

- WorkflowResponse
  - `id` integer, required
  - `name` string, required
  - `status` string, required
  - `created_at` string, date-time, required
  - `workflow_definition` object, required
  - `current_definition_id` integer, nullable, required
  - `template_context_variables` object, nullable
  - `call_disposition_codes` CallDispositionCodes
    - `disposition_codes` string[]
  - `total_runs` integer, nullable
  - `workflow_configurations` object, nullable
  - `version_number` integer, nullable
  - `version_status` string, nullable
  - `workflow_uuid` string, nullable

## Other responses

- `404` — Not found
- `422` — Validation Error

---

[API](https://skmtc.net/dograh/apis/dograh-api.md) · [All operations](https://skmtc.net/dograh/apis/dograh-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dograh/dograh-api/versions/e7d045c0295a/schema)
