Skip to main content
GET
/
assessment-tests
/
{assessmentTestIdentifier}
/
test-parts
/
{identifier}
Get a specific test part with all its sections
curl --request GET \
  --url https://qti.alpha-1edtech.ai/api/assessment-tests/{assessmentTestIdentifier}/test-parts/{identifier} \
  --header 'Authorization: Bearer <token>'
{
  "identifier": "<string>",
  "navigationMode": "linear",
  "submissionMode": "individual",
  "qti-assessment-section": [
    {
      "identifier": "<string>",
      "title": "<string>",
      "visible": true,
      "required": true,
      "fixed": false,
      "sequence": 123,
      "qti-assessment-item-ref": [
        {
          "identifier": "<string>",
          "href": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

assessmentTestIdentifier
string
required

The unique identifier of the parent assessment test

identifier
string
required

The unique identifier of the test part to retrieve

Response

Successfully retrieved test part

Complete test part data returned from the service provider. Contains all sections and their configuration.

identifier
string
required

Unique identifier for the entity on the service provider.

navigationMode
enum<string>
required

Controls how learners navigate through the test part. 'linear' requires items to be responded to in sequence without jumping around, while 'nonlinear' allows candidates to respond to items in any order they choose.

Available options:
linear,
nonlinear
submissionMode
enum<string>
required

Determines how learner responses are submitted for response processing. 'individual' allows responses to be submitted as each item is completed, while 'simultaneous' means responses for all items are sent when the whole part is completed.

Available options:
individual,
simultaneous
qti-assessment-section
object[]
required