GET
https://jmpy.me/api/v1
/
qr-ab-tests
/
{testId}
curl -X GET https://jmpy.me/api/v1/qr-ab-tests/test_987654321 \
  -H "Authorization: Bearer <token>"
{
  "test": {
    "id": "test_987654321",
    "name": "Menu Layout Test",
    "description": "Testing new vs old menu PDF",
    "status": "running",
    "variants": [
      {
        "id": "var_1",
        "name": "Original Menu",
        "destination_url": "https://restaurant.com/menu-v1",
        "traffic_weight": 50
      },
      {
        "id": "var_2",
        "name": "New Menu",
        "destination_url": "https://restaurant.com/menu-v2",
        "traffic_weight": 50
      }
    ]
  }
}
Retrieve the full details and configuration of a specific A/B test.

Path Parameters

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

Request Examples

curl -X GET https://jmpy.me/api/v1/qr-ab-tests/test_987654321 \
  -H "Authorization: Bearer <token>"
{
  "test": {
    "id": "test_987654321",
    "name": "Menu Layout Test",
    "description": "Testing new vs old menu PDF",
    "status": "running",
    "variants": [
      {
        "id": "var_1",
        "name": "Original Menu",
        "destination_url": "https://restaurant.com/menu-v1",
        "traffic_weight": 50
      },
      {
        "id": "var_2",
        "name": "New Menu",
        "destination_url": "https://restaurant.com/menu-v2",
        "traffic_weight": 50
      }
    ]
  }
}
Retrieve the full details and configuration of a specific A/B test.

Path Parameters

testId
string
required
The UUID of the A/B test.
curl -X GET https://jmpy.me/api/v1/qr-ab-tests/test_987654321 \
  -H "Authorization: Bearer <token>"
{
  "test": {
    "id": "test_987654321",
    "name": "Menu Layout Test",
    "description": "Testing new vs old menu PDF",
    "status": "running",
    "variants": [
      {
        "id": "var_1",
        "name": "Original Menu",
        "destination_url": "https://restaurant.com/menu-v1",
        "traffic_weight": 50
      },
      {
        "id": "var_2",
        "name": "New Menu",
        "destination_url": "https://restaurant.com/menu-v2",
        "traffic_weight": 50
      }
    ]
  }
}