POST
https://jmpy.me/api/v1
/
qr-ab-tests
/
{testId}
/
pause
curl -X POST https://jmpy.me/api/v1/qr-ab-tests/test_987654321/pause \
  -H "Authorization: Bearer <token>"
{
  "test": {
    "id": "test_987654321",
    "status": "paused"
  },
  "message": "QR A/B test paused"
}
Temporarily stop a running test. Traffic splitting will stop, and the QR code will revert to its default behavior until the test is resumed.

Path Parameters

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

Request Examples

curl -X POST https://jmpy.me/api/v1/qr-ab-tests/test_987654321/pause \
  -H "Authorization: Bearer <token>"
{
  "test": {
    "id": "test_987654321",
    "status": "paused"
  },
  "message": "QR A/B test paused"
}
Temporarily stop a running test. Traffic splitting will stop, and the QR code will revert to its default behavior until the test is resumed.

Path Parameters

testId
string
required
The UUID of the A/B test to pause.
curl -X POST https://jmpy.me/api/v1/qr-ab-tests/test_987654321/pause \
  -H "Authorization: Bearer <token>"
{
  "test": {
    "id": "test_987654321",
    "status": "paused"
  },
  "message": "QR A/B test paused"
}