Skip to main content
POST
/
v1
/
evals
/
workbench-setups
Create Workbench Setup
curl --request POST \
  --url https://api.bland.ai/v1/evals/workbench-setups \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '
{
  "name": "<string>",
  "description": {}
}
'
import requests

url = "https://api.bland.ai/v1/evals/workbench-setups"

payload = {
"name": "<string>",
"description": {}
}
headers = {
"authorization": "<authorization>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {authorization: '<authorization>', 'Content-Type': 'application/json'},
body: JSON.stringify({name: '<string>', description: {}})
};

fetch('https://api.bland.ai/v1/evals/workbench-setups', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bland.ai/v1/evals/workbench-setups",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'description' => [

]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"authorization: <authorization>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.bland.ai/v1/evals/workbench-setups"

payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"description\": {}\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("authorization", "<authorization>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.bland.ai/v1/evals/workbench-setups")
.header("authorization", "<authorization>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"description\": {}\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.bland.ai/v1/evals/workbench-setups")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["authorization"] = '<authorization>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"description\": {}\n}"

response = http.request(request)
puts response.read_body
{
  "errors": null,
  "data": {
    "setup": {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "org_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "key": "onboarding-quality-check",
      "name": "Onboarding Quality Check",
      "description": "Evaluates tone, accuracy, and resolution rate across onboarding calls.",
      "current_version_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "active_version_id": null,
      "metadata": {},
      "created_at": "2026-05-27T09:00:00.000Z",
      "updated_at": "2026-05-27T09:00:00.000Z",
      "deleted_at": null
    },
    "current_version": {
      "id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "org_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "workbench_setup_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "version_number": 1,
      "name": "Onboarding Quality Check",
      "description": "Evaluates tone, accuracy, and resolution rate across onboarding calls.",
      "state": "editable",
      "attached_agents": [],
      "pass_threshold_pct": null,
      "run_mode": "text",
      "default_test_config_id": null,
      "default_call_ids": [],
      "created_from_version_id": null,
      "created_by": "9a8b7c6d-5e4f-3210-9876-543210fedcba",
      "created_at": "2026-05-27T09:00:00.000Z",
      "updated_at": "2026-05-27T09:00:00.000Z"
    }
  }
}

Headers

authorization
string
required
Your API key for authentication.

Body Parameters

name
string
Display name for the setup. Between 1 and 200 characters.
description
string | null
Optional description of the setup.

Response

Returns 201 on success.
data
object
An object containing the new setup and its draft version.
errors
null
null on success.
{
  "errors": null,
  "data": {
    "setup": {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "org_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "key": "onboarding-quality-check",
      "name": "Onboarding Quality Check",
      "description": "Evaluates tone, accuracy, and resolution rate across onboarding calls.",
      "current_version_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "active_version_id": null,
      "metadata": {},
      "created_at": "2026-05-27T09:00:00.000Z",
      "updated_at": "2026-05-27T09:00:00.000Z",
      "deleted_at": null
    },
    "current_version": {
      "id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "org_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "workbench_setup_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "version_number": 1,
      "name": "Onboarding Quality Check",
      "description": "Evaluates tone, accuracy, and resolution rate across onboarding calls.",
      "state": "editable",
      "attached_agents": [],
      "pass_threshold_pct": null,
      "run_mode": "text",
      "default_test_config_id": null,
      "default_call_ids": [],
      "created_from_version_id": null,
      "created_by": "9a8b7c6d-5e4f-3210-9876-543210fedcba",
      "created_at": "2026-05-27T09:00:00.000Z",
      "updated_at": "2026-05-27T09:00:00.000Z"
    }
  }
}