POST
/
action-plan
/
v1
/
k12
/
teacher
Create Teacher Action Plan
curl --request POST \
  --url https://api-staging.crazygoldfish.com/action-plan/v1/k12/teacher \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "exam_id": "d7c8333e-9a2d-4c6d-8bb8-4a02ad6e43fd"
}'
{
  "status_code": 201,
  "response_id": "d7c8333e-9a2d-4c6d-8bb8-4ass02ad6e43fd",
  "message": "Teacher action plan initiated successfully."
}

Authorizations

Authorization
string
header
required

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

Body

application/json
exam_id
string<uuid>
required

Unique identifier of the exam for which the teacher action plan will be created.

Response

Teacher action plan successfully initiated.

status_code
integer
required
Example:

201

response_id
string<uuid>
required

The exam ID that was used to create the teacher action plan.

message
string
required
Example:

"Teacher action plan initiated successfully."