POST - Create Worksheet Question Configuration
Finalizes the worksheet metadata by submitting subject matter and learning standards for a given worksheet.
This step ensures that the worksheet proceeds to the question configuration phase.
How to Use:
- Call
POST /worksheet/v1/question-config/{work_sheet_id}with a valid worksheet ID. - Provide the finalized metadata in the request body (
subject_matterandlearning_standards). - If successful, the worksheet question configuration process will be initiated asynchronously.
- If the worksheet is not found, or if its steps are invalid, a corresponding error is returned.
Path Parameters:
work_sheet_id(UUID, required): The unique ID of the worksheet.
POST
Create Worksheet Question Configuration
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
Response
Worksheet question configuration initiated successfully.
Previous
GET - Worksheet Question ConfigurationRetrieves the finalized question configuration of a worksheet by its ID.
The response includes worksheet details such as board, grade, subject, status, topic, number of questions, documents, audio, subject matter, learning standards, and the actual question configuration.
**How to Use:**
1. Call `GET /worksheet/v1/question-config/{work_sheet_id}` with the worksheet ID.
2. On success, you will receive all worksheet metadata along with question configuration.
3. If the worksheet or configuration step does not exist, a `404` error is returned.
4. If the configuration step failed, a `400` error with the failure message is returned.
**Path Parameters:**
- `work_sheet_id` (UUID, required): The unique ID of the worksheet.
Next
Create Worksheet Question Configuration