---
title: "Deploy V2 Controllers"
method: POST
path: "/bot-orchestration/deploy-v2-controllers"
tags: ["Bot Orchestration"]
---

# Deploy V2 Controllers

`POST /bot-orchestration/deploy-v2-controllers`

Deploy a V2 strategy with controllers by generating the script config and creating the instance.
This endpoint simplifies the deployment process for V2 controller strategies.

Args:
    deployment: V2ControllerDeployment configuration
    docker_manager: Docker service dependency

Returns:
    Dictionary with deployment response and generated configuration details

Raises:
    HTTPException: 500 if deployment fails

## Request body

- V2ControllerDeployment — Configuration for deploying a bot with controllers
  - `instance_name` string, required — Unique name for the bot instance
  - `credentials_profile` string, required — Name of the credentials profile to use
  - `controllers_config` string[], required — List of controller configuration files to use (without .yml extension)
  - `max_global_drawdown_quote` number, nullable — Maximum allowed global drawdown in quote usually USDT
  - `max_controller_drawdown_quote` number, nullable — Maximum allowed per-controller drawdown in quote usually USDT
  - `image` string — Docker image for the Hummingbot instance
  - `script_config` string, nullable — Generated script configuration file name
  - `headless` boolean — Run in headless mode (no UI)

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

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