v1

latestOpenAPI 3.0.02026-07-2493247.1 KB
QXscore Data

Obtain QXscores for a test

Calculates the Quality of Experience Score (QXscore) for an Interaction test based on all completed sessions. The response includes detailed component and subcomponent values that contribute to the overall QXscore.

Compatibility:

  • Compatible with interaction tests, i.e., tests with the "STUDYV2" type and "NON_THINK_OUT_LOUD" product type.
  • Go to How to Obtain a Test ID (UUID) for details.

Note:

  • A QXscore is a reliable benchmark metric for evaluating the quality of an experience. This composite score combines behavioral data from navigation tasks with attitudinal data from a standardized questionnaire to effectively balance participants' actions and opinions.
    Learn more about QXscore.

Use case example:

get/api/v2/testResults/{testId}/qxScores

Path parameters

testIdstring uuid required

ID of the Interaction test whose QXscore you want to retrieve.

Response

QXscore successfully returned.

testIdstring required

UUID of the test.

Example response

{
  "testId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "qxScores": [
    {
      "taskGroupId": "b1e2c3d4-5678-1234-9abc-def012345678",
      "label": "QXscore 1",
      "components": {
        "attitudinal": 50
      },
      "values": {
        "usability": 50,
        "trust": 50,
        "appearance": 50,
        "loyalty": 50
      }
    }
  ],
  "meta": {
    "totalQxTasks": 1,
    "completes": 2
  }
}