List past persona split tests for a bot
curl --request GET \
--url https://api.closebot.com/bot/{id}/persona-split-tests \
--header 'X-CB-KEY: <api-key>'import requests
url = "https://api.closebot.com/bot/{id}/persona-split-tests"
headers = {"X-CB-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-CB-KEY': '<api-key>'}};
fetch('https://api.closebot.com/bot/{id}/persona-split-tests', 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.closebot.com/bot/{id}/persona-split-tests",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-CB-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.closebot.com/bot/{id}/persona-split-tests"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-CB-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.closebot.com/bot/{id}/persona-split-tests")
.header("X-CB-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.closebot.com/bot/{id}/persona-split-tests")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-CB-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"startedAt": "2023-11-07T05:31:56Z",
"endedAt": "2023-11-07T05:31:56Z",
"personas": [
{
"personaId": "<string>",
"weight": 123,
"order": 123,
"results": {
"personaId": "<string>",
"personaName": "<string>",
"splitWeight": 123,
"totalInstances": 123,
"responseCount": 123,
"averageMetric": 123,
"sources": [
{
"sourceId": "<string>",
"sourceName": "<string>",
"totalInstances": 123,
"responseCount": 123,
"averageMetric": 123
}
],
"computedAt": "2023-11-07T05:31:56Z"
}
}
],
"id": "<string>",
"isActive": true,
"metric": "<string>"
}
],
"total": 123,
"hasMore": true
}Bot
List past persona split tests for a bot
Returns deactivated tests, newest first. The current test — running or just-ended and still marked active — stays on GET /bot/.
GET
/
bot
/
{id}
/
persona-split-tests
List past persona split tests for a bot
curl --request GET \
--url https://api.closebot.com/bot/{id}/persona-split-tests \
--header 'X-CB-KEY: <api-key>'import requests
url = "https://api.closebot.com/bot/{id}/persona-split-tests"
headers = {"X-CB-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-CB-KEY': '<api-key>'}};
fetch('https://api.closebot.com/bot/{id}/persona-split-tests', 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.closebot.com/bot/{id}/persona-split-tests",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-CB-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.closebot.com/bot/{id}/persona-split-tests"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-CB-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.closebot.com/bot/{id}/persona-split-tests")
.header("X-CB-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.closebot.com/bot/{id}/persona-split-tests")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-CB-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"startedAt": "2023-11-07T05:31:56Z",
"endedAt": "2023-11-07T05:31:56Z",
"personas": [
{
"personaId": "<string>",
"weight": 123,
"order": 123,
"results": {
"personaId": "<string>",
"personaName": "<string>",
"splitWeight": 123,
"totalInstances": 123,
"responseCount": 123,
"averageMetric": 123,
"sources": [
{
"sourceId": "<string>",
"sourceName": "<string>",
"totalInstances": 123,
"responseCount": 123,
"averageMetric": 123
}
],
"computedAt": "2023-11-07T05:31:56Z"
}
}
],
"id": "<string>",
"isActive": true,
"metric": "<string>"
}
],
"total": 123,
"hasMore": true
}Authorizations
CloseBot API Key Authorization
Path Parameters
The bot ID.
Query Parameters
Records to skip. Defaults to 0.
Page size, clamped to Closebot.Api.Controllers.BotController.MaxSplitTestPageSize.
Response
OK
One page of split-test history. An envelope rather than a bare array so the client knows when to stop asking; Closebot.Api.Controllers.BotController.PersonaSplitTestPageDto.Total is what the history tray shows in its collapsed bar.

