POST
/
action-plan
/
v1
/
k12
/
student
Create Student Action Plan
curl --request POST \
  --url https://api-staging.crazygoldfish.com/action-plan/v1/k12/student \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "ans_sheet_id": "b5a8d8c1-4a34-4e3c-97ab-52972d0bfcf9"
}'
{
  "status_code": 201,
  "response_id": "b5a8d8c1-4a34-4e3c-97ab-52972d0bfcf9",
  "message": "Student 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
ans_sheet_id
string<uuid>
required

Unique identifier of the student's answer sheet.

Response

Student action plan successfully initiated.

status_code
integer
required
Example:

201

response_id
string<uuid>
required

The answer sheet ID associated with the new student action plan.

message
string
required
Example:

"Student action plan initiated successfully."