curl --request GET \
--url https://qti.alpha-1edtech.ai/api/stimuli \
--header 'Authorization: Bearer <token>'{
"items": [
{
"identifier": "<string>",
"title": "<string>",
"catalogInfo": [
{
"id": "<string>",
"support": "<string>",
"content": "<string>"
}
],
"rawXml": "<string>",
"content": {
"qti-assessment-stimulus": {
"_attributes": {
"xmlns": "<string>",
"xmlns:xsi": "<string>",
"xsi:schemaLocation": "<string>",
"identifier": "<string>",
"xml:lang": "<string>",
"title": "<string>"
},
"qti-stimulus-body": {},
"qti-stylesheet": {
"_attributes": {
"href": "<string>",
"type": "<string>"
}
},
"qti-catalog-info": {
"qti-catalog": {
"_attributes": {
"id": "<string>"
},
"qti-card": {
"_attributes": {
"support": "<string>"
},
"qti-html-content": {}
}
}
}
}
},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"label": "<string>",
"language": "en",
"stylesheet": {
"href": "<string>",
"type": "<string>"
},
"toolName": "<string>",
"toolVersion": "<string>",
"metadata": {},
"__v": 123
}
],
"total": 123,
"page": 1,
"pages": 123,
"limit": 10,
"sort": "<string>",
"order": "asc"
}Get all stimuli on the service provider. Search with advanced filtering capabilities. Supports text search across titles and identifiers, sorting, and pagination.
curl --request GET \
--url https://qti.alpha-1edtech.ai/api/stimuli \
--header 'Authorization: Bearer <token>'{
"items": [
{
"identifier": "<string>",
"title": "<string>",
"catalogInfo": [
{
"id": "<string>",
"support": "<string>",
"content": "<string>"
}
],
"rawXml": "<string>",
"content": {
"qti-assessment-stimulus": {
"_attributes": {
"xmlns": "<string>",
"xmlns:xsi": "<string>",
"xsi:schemaLocation": "<string>",
"identifier": "<string>",
"xml:lang": "<string>",
"title": "<string>"
},
"qti-stimulus-body": {},
"qti-stylesheet": {
"_attributes": {
"href": "<string>",
"type": "<string>"
}
},
"qti-catalog-info": {
"qti-catalog": {
"_attributes": {
"id": "<string>"
},
"qti-card": {
"_attributes": {
"support": "<string>"
},
"qti-html-content": {}
}
}
}
}
},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"label": "<string>",
"language": "en",
"stylesheet": {
"href": "<string>",
"type": "<string>"
},
"toolName": "<string>",
"toolVersion": "<string>",
"metadata": {},
"__v": 123
}
],
"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.
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 stimuli
Paginated response containing all stimuli that match the search criteria with navigation metadata
The items array will contain all stimuli that match the search criteria on the service provider.
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