Sep 20, 2024
Stop an A/B test
Stops an A/B test by its ID.
You can’t restart stopped A/B tests.
Usage
Required ACL:
editSettings
Copy
1
2
3
4
5
6
import { algoliasearch } from 'algoliasearch';
// Replace 'us' with your Algolia Application Region
const client = algoliasearch('ALGOLIA_APPLICATION_ID', 'ALGOLIA_API_KEY').initAbtesting({ region: 'us' });
const response = await client.stopABTest({ id: 42 });
Did you find this page helpful?