POST
/
worksheet
/
v1
/
question-config
/
{work_sheet_id}
Create Worksheet Question Configuration
curl --request POST \
  --url https://api-staging.crazygoldfish.com/worksheet/v1/question-config/{work_sheet_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "subject_matter": {
    "topics_to_be_covered": {
      "topic": {
        "ai_recommendations": [
          "Explain the concept of magnetic poles and their properties with examples.",
          "Describe the behavior of a compass needle near a bar magnet and explain why it gets deflected."
        ],
        "additional_recommendations": [
          "Include an activity-based question related to creating an electromagnet using a solenoid and steel rod."
        ]
      }
    },
    "prerequisite_knowledge": {
      "prerequisite": {
        "ai_recommendations": [
          "Understand the concept of magnetism including magnetic poles and their properties."
        ],
        "additional_recommendations": [
          "Review the concept of magnetic fields and field lines."
        ]
      }
    },
    "key_concepts_and_subconcepts": {
      "concepts": {
        "ai_recommendations": [
          "Magnetic Poles and Their Properties",
          "Visualization of Magnetic Field Lines"
        ],
        "additional_recommendations": [
          "Comparison of attraction and repulsion between poles"
        ]
      }
    }
  },
  "learning_standards": {
    "competencies": {
      "competency_list": [
        {
          "name": "C-8.1",
          "description": "Develops accurate and appropriate models..."
        },
        {
          "name": "C-8.2",
          "description": "Designs and implements a plan for scientific inquiry..."
        }
      ]
    },
    "learning_outcomes": {
      "outcomes": {
        "ai_recommendations": [
          "Relates phenomena with causes and effects (e.g., compass deflection)."
        ],
        "additional_recommendations": [
          "Draws labeled diagrams of magnetic field lines."
        ]
      }
    },
    "smart_learning_objectives": {
      "objects": {
        "ai_recommendations": [
          "Students will analyze the deflection of a compass needle (Analyze)."
        ],
        "additional_recommendations": [
          "Students will sketch ray diagrams and magnetic field lines (Apply)."
        ]
      }
    }
  }
}'
{
  "detail": [
    {
      "id": "152764ca-1685-427c-aba7-4b92dcc0d60f",
      "msg": "Worksheet question configuration initiated successfully."
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

work_sheet_id
string<uuid>
required

Unique identifier of the worksheet

Body

application/json

Response

Worksheet question configuration initiated successfully.

The response is of type object.