Create an A/B test

Creates a new A/B test.

Usage

Required ACL: editSettings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Abtesting

let client = try AbtestingClient(appID: "ALGOLIA_APPLICATION_ID", apiKey: "ALGOLIA_API_KEY", region: .us)

let response = try await client.addABTests(addABTestsRequest: AbtestingAddABTestsRequest(
    name: "myABTest",
    variants: [
        AbtestingAddABTestsVariant.abtestingAbTestsVariant(AbtestingAbTestsVariant(
            index: "AB_TEST_1",
            trafficPercentage: 30
        )),
        AbtestingAddABTestsVariant.abtestingAbTestsVariant(AbtestingAbTestsVariant(
            index: "AB_TEST_2",
            trafficPercentage: 50
        )),
    ],
    endAt: "2022-12-31T00:00:00.000Z"
))
Did you find this page helpful?
Swift API clients v9