DELETE
https://jmpy.me/api/v1
/
url-ab-tests
/
{testId}
Delete URL A/B Test
curl --request DELETE \
  --url https://jmpy.me/api/v1/url-ab-tests/{testId} \
  --header 'Authorization: Bearer <token>'
Permanently remove an A/B test and its associated variants. Analytics data for the test will also be deleted.

Path Parameters

testId
string
required
The UUID of the A/B test to delete.

Request Examples

curl -X DELETE "https://jmpy.me/api/v1/url-ab-tests/test_url_789" \
  -H "Authorization: Bearer <token>"

Response Examples

{
  "message": "A/B test deleted successfully"
}