curl --request GET \
--url https://qti.alpha-1edtech.ai/api/lesson/{lessonId} \
--header 'Authorization: Bearer <token>'[
{
"userId": "<string>",
"feedback": "<string>",
"type": "QUESTION",
"lessonId": "<string>",
"questionId": "<string>",
"humanApproved": true
}
]Retrieves all feedback for a specific lesson
curl --request GET \
--url https://qti.alpha-1edtech.ai/api/lesson/{lessonId} \
--header 'Authorization: Bearer <token>'[
{
"userId": "<string>",
"feedback": "<string>",
"type": "QUESTION",
"lessonId": "<string>",
"questionId": "<string>",
"humanApproved": true
}
]The access token received from the authorization server in the OAuth 2.0 flow.
The lesson ID to fetch feedback for
Successfully retrieved lesson feedback
Identifier of the user who submitted the feedback
The feedback content provided by the user
Type of feedback - either for a specific question or for the entire lesson
QUESTION, LESSON Identifier of the lesson this feedback refers to (required)
Identifier of the specific question this feedback refers to (optional, for question-level feedback)
Whether the feedback has been reviewed and approved by a human