curl --request POST \
--url https://qti.alpha-1edtech.ai/api/lesson \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"userId": "<string>",
"feedback": "<string>",
"lessonId": "<string>",
"questionId": "<string>",
"humanApproved": true
}
'{
"userId": "<string>",
"feedback": "<string>",
"type": "QUESTION",
"lessonId": "<string>",
"questionId": "<string>",
"humanApproved": true
}Creates a new feedback for a lesson
curl --request POST \
--url https://qti.alpha-1edtech.ai/api/lesson \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"userId": "<string>",
"feedback": "<string>",
"lessonId": "<string>",
"questionId": "<string>",
"humanApproved": true
}
'{
"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 feedback content to create
Schema for creating new feedback (identifier is auto-generated)
Identifier of the user who submitted the feedback
The feedback content provided by the user
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
Successfully created lesson feedback
Schema for creating new feedback (identifier is auto-generated)
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