POST - Worksheet Feedback
This API allows authenticated users to create feedback entries for a worksheet.
How to Use:
- Call
POST /worksheet/v1/feedback/{work_sheet_id}with the feedback details including rating, comment, feedback type, and optional fields. - The API validates that the worksheet exists and creates a new feedback entry.
Request Body Parameters:
- rating (optional): Integer between 1 and 5, representing the rating for the worksheet.
- comment (required): Text feedback or comment about the worksheet.
- feedback_type (required): Type of feedback ( May be one of them:
general,content,quality,suggestion). - feedback_data (optional): Structured feedback data as a JSON object for additional context.
- step_name (optional): Specific step name if the feedback is for a particular step in the worksheet.
- component_name (optional): Specific component name if the feedback is for a particular component.
Documentation Index
Fetch the complete documentation index at: https://docs.crazygoldfish.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Unique identifier of the worksheet
Body
Text feedback/comment about the worksheet
"The worksheet is well-structured and covers all key concepts. However, I suggest adding more interactive activities."
Type of feedback. Must be one of: general (general feedback), content (content-specific feedback), quality (quality feedback), suggestion (suggestions for improvement)
general, content, quality, suggestion "suggestion"
Rating from 1 to 5
1 <= x <= 54
Structured feedback data as a JSON object for additional context
{
"strengths": ["Clear objectives", "Good pacing"],
"improvements": [
"Add more examples",
"Include assessment rubric"
]
}Specific step name if feedback is for a particular step in the worksheet
"Introduction"
Specific component name if feedback is for a particular component
"Learning Objectives"
Response
Feedback created successfully.