---
title: "Create Workflow Config"
method: POST
path: "/api/v1/workflow-configs/"
tags: ["workflow-configs"]
---

# Create Workflow Config

`POST /api/v1/workflow-configs/`

Create a new workflow configuration for a voice agent.

## Request body

- VoiceCallWorkflowConfigCreate — Create schema for VoiceCallWorkflowConfig.
  - `intent_name` string, required
  - `intent_description` string, nullable
  - `parameters` WorkflowParameter[]
    - `name` string, required
    - `type` 'string' | 'number' | 'boolean' | 'array' | 'object', required
    - `description` string, nullable
    - `required` boolean
  - `voice_agent_id` string, uuid, required

## Response `201`

Successful Response

- VoiceCallWorkflowConfigRead — Read schema for VoiceCallWorkflowConfig.
  - `id` string, uuid, required
  - `intent_name` string, required
  - `intent_description` string, nullable
  - `parameters` WorkflowParameter[]
    - `name` string, required
    - `type` 'string' | 'number' | 'boolean' | 'array' | 'object', required
    - `description` string, nullable
    - `required` boolean
  - `voice_agent_id` string, uuid, required
  - `tenant_id` string, uuid, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/getanana/apis/cleon-api.md) · [All operations](https://skmtc.dev/getanana/apis/cleon-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/getanana/cleon-api/revisions/c0f54348e251/schema)
