curl --request DELETE \
--url https://api.teamfollowup.ai/api/agent-builder/agents/{id}/split-test/variants/{variantAgentId} \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"revision": 5
}'import requests
url = "https://api.teamfollowup.ai/api/agent-builder/agents/{id}/split-test/variants/{variantAgentId}"
payload = { "revision": 5 }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'DELETE',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({revision: 5})
};
fetch('https://api.teamfollowup.ai/api/agent-builder/agents/{id}/split-test/variants/{variantAgentId}', 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.teamfollowup.ai/api/agent-builder/agents/{id}/split-test/variants/{variantAgentId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_POSTFIELDS => json_encode([
'revision' => 5
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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.teamfollowup.ai/api/agent-builder/agents/{id}/split-test/variants/{variantAgentId}"
payload := strings.NewReader("{\n \"revision\": 5\n}")
req, _ := http.NewRequest("DELETE", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.delete("https://api.teamfollowup.ai/api/agent-builder/agents/{id}/split-test/variants/{variantAgentId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"revision\": 5\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.teamfollowup.ai/api/agent-builder/agents/{id}/split-test/variants/{variantAgentId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"revision\": 5\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"splitTest": {
"locationId": "loc_9f7a123",
"campaignId": "campaign_speed_to_lead_123",
"primaryAgentId": "agent_1ffdb9717444d0e77346838911",
"status": "ended",
"revision": 6,
"sync": {
"status": "healthy",
"failedAt": null
},
"variants": [
{
"agentId": "agent_1ffdb9717444d0e77346838911",
"name": "Speed to Lead",
"sequence": 1,
"weight": 100,
"status": "active",
"addedAt": "2026-08-14T09:12:44.318Z",
"removedAt": null,
"isPrimary": true
},
{
"agentId": "agent_7c4e1b28f0a94d6591cc2fd340",
"name": "Speed to Lead II",
"sequence": 2,
"weight": 0,
"status": "removed",
"addedAt": "2026-08-20T16:04:02.771Z",
"removedAt": "2026-08-29T11:20:07.004Z",
"isPrimary": false
}
]
}
}{
"success": false,
"error": "VALIDATION",
"message": "Weights must include every active variant exactly once."
}{
"success": false,
"error": "Unauthorized",
"message": "Authentication required."
}{
"success": false,
"error": "AccessDenied",
"message": "You do not have access to this agent."
}{
"success": false,
"error": "NOT_FOUND",
"message": "This campaign does not have an Agent Split Test."
}{
"success": false,
"error": "CONFLICT",
"message": "Agent Split Test changed since it was loaded. Refresh and retry."
}{
"success": false,
"error": "TooManyRequests",
"message": "Too many requests, please try again later."
}{
"success": false,
"error": "InternalError",
"message": "Unexpected server error."
}Remove split variant
Take one arm out of the split for good. Its weight is redistributed across the live survivors, and the variant stays in the list with status: "removed" so past calls still attribute correctly. Leads mid-conversation with it are re-bucketed on their next dial.
To pause an arm instead, exclude it with PATCH /split-test and weight: 0; that keeps the agent and its history, a live variant covers calls to its leads meanwhile, and putting it back hands those leads straight back to it.
Removing the second-to-last member ends the split: the last one takes all 100 and status becomes ended. Excluded members count as members here, so a split with one live arm and three drafts is still running. The Primary Variant cannot be removed.
Required API key scope: agents:write.
curl --request DELETE \
--url https://api.teamfollowup.ai/api/agent-builder/agents/{id}/split-test/variants/{variantAgentId} \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"revision": 5
}'import requests
url = "https://api.teamfollowup.ai/api/agent-builder/agents/{id}/split-test/variants/{variantAgentId}"
payload = { "revision": 5 }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'DELETE',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({revision: 5})
};
fetch('https://api.teamfollowup.ai/api/agent-builder/agents/{id}/split-test/variants/{variantAgentId}', 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.teamfollowup.ai/api/agent-builder/agents/{id}/split-test/variants/{variantAgentId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_POSTFIELDS => json_encode([
'revision' => 5
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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.teamfollowup.ai/api/agent-builder/agents/{id}/split-test/variants/{variantAgentId}"
payload := strings.NewReader("{\n \"revision\": 5\n}")
req, _ := http.NewRequest("DELETE", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.delete("https://api.teamfollowup.ai/api/agent-builder/agents/{id}/split-test/variants/{variantAgentId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"revision\": 5\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.teamfollowup.ai/api/agent-builder/agents/{id}/split-test/variants/{variantAgentId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"revision\": 5\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"splitTest": {
"locationId": "loc_9f7a123",
"campaignId": "campaign_speed_to_lead_123",
"primaryAgentId": "agent_1ffdb9717444d0e77346838911",
"status": "ended",
"revision": 6,
"sync": {
"status": "healthy",
"failedAt": null
},
"variants": [
{
"agentId": "agent_1ffdb9717444d0e77346838911",
"name": "Speed to Lead",
"sequence": 1,
"weight": 100,
"status": "active",
"addedAt": "2026-08-14T09:12:44.318Z",
"removedAt": null,
"isPrimary": true
},
{
"agentId": "agent_7c4e1b28f0a94d6591cc2fd340",
"name": "Speed to Lead II",
"sequence": 2,
"weight": 0,
"status": "removed",
"addedAt": "2026-08-20T16:04:02.771Z",
"removedAt": "2026-08-29T11:20:07.004Z",
"isPrimary": false
}
]
}
}{
"success": false,
"error": "VALIDATION",
"message": "Weights must include every active variant exactly once."
}{
"success": false,
"error": "Unauthorized",
"message": "Authentication required."
}{
"success": false,
"error": "AccessDenied",
"message": "You do not have access to this agent."
}{
"success": false,
"error": "NOT_FOUND",
"message": "This campaign does not have an Agent Split Test."
}{
"success": false,
"error": "CONFLICT",
"message": "Agent Split Test changed since it was loaded. Refresh and retry."
}{
"success": false,
"error": "TooManyRequests",
"message": "Too many requests, please try again later."
}{
"success": false,
"error": "InternalError",
"message": "Unexpected server error."
}Authorizations
Send your API key as Authorization: Bearer YOUR_API_KEY.
Path Parameters
Agent id of the Primary Variant. Every split operation is addressed through the primary, not through a secondary variant.
1Agent id of the active variant to remove. Must not be the Primary Variant.
1Body
The revision being changed.
The revision from the split you are changing.
x >= 15
