curl --request GET \
--url https://qti.alpha-1edtech.ai/api/assessment-tests/{assessmentTestIdentifier}/test-parts/{testPartIdentifier}/sections \
--header 'Authorization: Bearer <token>'{
"items": [
{
"identifier": "<string>",
"title": "<string>",
"visible": true,
"required": true,
"fixed": false,
"sequence": 123,
"qti-assessment-item-ref": [
{
"identifier": "<string>",
"href": "<string>"
}
]
}
],
"total": 123,
"page": 1,
"pages": 123,
"limit": 10,
"sort": "<string>",
"order": "asc"
}Get all sections within a specific test part with support for text search, sorting, and pagination. Sections are containers that group related assessment items and define their presentation order.
curl --request GET \
--url https://qti.alpha-1edtech.ai/api/assessment-tests/{assessmentTestIdentifier}/test-parts/{testPartIdentifier}/sections \
--header 'Authorization: Bearer <token>'{
"items": [
{
"identifier": "<string>",
"title": "<string>",
"visible": true,
"required": true,
"fixed": false,
"sequence": 123,
"qti-assessment-item-ref": [
{
"identifier": "<string>",
"href": "<string>"
}
]
}
],
"total": 123,
"page": 1,
"pages": 123,
"limit": 10,
"sort": "<string>",
"order": "asc"
}The access token received from the authorization server in the OAuth 2.0 flow.
Root assessment test identifier
Parent test part identifier
Search title and identifier fields using a search term. This is a fuzzy search.
Page number for pagination
1
Number of items per page
10
Field to sort by
title, identifier, createdAt, updatedAt "createdAt"
Sort order
asc, desc "desc"
Successfully retrieved sections
Paginated response containing all assessment sections that exist in the specified test part on the service provider, including complete section data and navigation metadata.
Array of assessment sections belonging to the specified test part, each containing complete section data and item references.
Show child attributes
The total number of entities that match the search criteria.
The page number of the entities that match the search criteria.
The total number of pages of entities that match the search criteria.
The number of entities per page.
The field to sort the entities by.
The order to sort the entities by. Either 'asc' or 'desc'.
asc, desc