POST
/
qr-ab-tests
/
{testId}
/
start
curl -X POST https://jmpy.me/api/v1/qr-ab-tests/test_987654321/start \
  -H "Authorization: Bearer <token>"
{
  "test": {
    "id": "test_987654321",
    "status": "running",
    "start_date": "2024-03-21T12:00:00Z"
  },
  "message": "QR A/B test started"
}
Change the status of a test from draft or paused to running. Once started, the primary QR code will begin splitting traffic according to the configured variants.

Path Parameters

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

Request Examples

curl -X POST https://jmpy.me/api/v1/qr-ab-tests/test_987654321/start \
  -H "Authorization: Bearer <token>"
{
  "test": {
    "id": "test_987654321",
    "status": "running",
    "start_date": "2024-03-21T12:00:00Z"
  },
  "message": "QR A/B test started"
}

Pause Test

Pause the experiment

View Analytics

Monitor progress
Change the status of a test from draft or paused to running. Once started, the primary QR code will begin splitting traffic according to the configured variants.

Path Parameters

testId
string
required
The UUID of the A/B test to start.
curl -X POST https://jmpy.me/api/v1/qr-ab-tests/test_987654321/start \
  -H "Authorization: Bearer <token>"
{
  "test": {
    "id": "test_987654321",
    "status": "running",
    "start_date": "2024-03-21T12:00:00Z"
  },
  "message": "QR A/B test started"
}