Jun 23, 2025
Create an A/B test
Creates a new A/B test.
Usage
Required ACL:
editSettings
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import com.algolia.api.AbtestingV3Client;
import com.algolia.config.*;
AbtestingV3Client client = new AbtestingV3Client("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY", "ALGOLIA_APPLICATION_REGION");
client.addABTests(
new AddABTestsRequest()
.setEndAt("2022-12-31T00:00:00.000Z")
.setName("myABTest")
.setMetrics(Arrays.asList(new CreateMetric().setName("myMetric")))
.setVariants(
Arrays.asList(
new AbTestsVariant().setIndex("AB_TEST_1").setTrafficPercentage(30),
new AbTestsVariant().setIndex("AB_TEST_2").setTrafficPercentage(50)
)
)
);
Did you find this page helpful?