Version: Next

Workflows

Three workflows are available when using our Spaced Repetition System:

  • "only_questions" workflow will recommend only review materials that are questions.
  • "only_actions" workflow will respectively recommend only review materials that are actions.
  • "mixed" workflow will recommend both types of review materials and choose the most appropriate one for each review.

The workflow can be defined when creating the Objective:

Method : POST​
URL : HOST_URL/instances/{instance_id}/objectives​
BODY :
{
"name": "Learning the Universe", ​
"objects": {
"knowledge_node_uids": ["concept_1", "concept_2", "concept_3"]
},
"memorize_options": {
"workflow": "only_questions"
}
}

or when subscribing the learner to the Objective:

Method : POST​
URL : HOST_URL/instances/{instance_id}/objective_students
BODY :
{​
"student_id": 1,​
"objective_id": 1,
"adaptive": false,​
"memorize": true,
"memorize_options": {​
"deadline": "2017-11-15",
"workflow": "mixed"
}​
}
info

A more detailed documentation on how to setup options in Objectives can be found here - Link