Schedule an A/B test

Schedule an A/B test to be started at a later time.

Usage

Required ACL: editSettings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require "algolia"

client = Algolia::AbtestingClient.create("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY", "ALGOLIA_APPLICATION_REGION")

response = client.schedule_ab_test(
  Algolia::Abtesting::ScheduleABTestsRequest.new(
    end_at: "2022-12-31T00:00:00.000Z",
    scheduled_at: "2022-11-31T00:00:00.000Z",
    name: "myABTest",
    variants: [
      Algolia::Abtesting::AbTestsVariant.new(index: "AB_TEST_1", traffic_percentage: 30),
      Algolia::Abtesting::AbTestsVariant.new(index: "AB_TEST_2", traffic_percentage: 50)
    ]
  )
)
Did you find this page helpful?