curl --request PUT \
--url https://qti.alpha-1edtech.ai/api/assessment-tests/{assessmentTestIdentifier}/test-parts/{testPartIdentifier}/sections/{identifier}/items/order \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"identifier": "<string>",
"href": "<string>",
"sequence": 123
}
]
}
'{
"identifier": "<string>",
"title": "<string>",
"visible": true,
"required": true,
"fixed": false,
"sequence": 123,
"qti-assessment-item-ref": [
{
"identifier": "<string>",
"href": "<string>"
}
]
}Update the presentation order of assessment item references within a section. This affects the sequence in which items are presented to test takers. All specified items must exist in the section.
curl --request PUT \
--url https://qti.alpha-1edtech.ai/api/assessment-tests/{assessmentTestIdentifier}/test-parts/{testPartIdentifier}/sections/{identifier}/items/order \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"identifier": "<string>",
"href": "<string>",
"sequence": 123
}
]
}
'{
"identifier": "<string>",
"title": "<string>",
"visible": true,
"required": true,
"fixed": false,
"sequence": 123,
"qti-assessment-item-ref": [
{
"identifier": "<string>",
"href": "<string>"
}
]
}The access token received from the authorization server in the OAuth 2.0 flow.
The unique identifier of the root assessment test
The unique identifier of the parent test part
The unique identifier of the target section containing the items to reorder
Array of assessment item references in the desired order
Update the presentation order of assessment item references within a section. All specified items must exist in the section on the service provider.
Array of assessment item identifiers with their updated sequence positions.
1Show child attributes
Assessment item order updated successfully
Complete assessment section data with all referenced items. Represents a section containing learning content within a test part.
Unique identifier for the entity on the service provider.
Human-readable title of the entity on the service provider.
Determines whether the assessment section is visible to candidates during test delivery. Sections are visible by default unless explicitly hidden for specific assessment conditions.
If a child element is required it must appear (at least once) in the selection.
If a child element is fixed it must never be shuffled. When used in combination with a selection rule fixed elements do not have their position fixed until after selection has taken place.
Defines the sequential order of this item within its parent section. Must be a positive integer that determines presentation order to candidates.
Collection of assessment items that are referenced within this section.
Show child attributes