Skip to content
  • There are no suggestions because the search field is empty.

Create a Reassessment Flow Using the API

This use case is ideal for institutions relying on the WISEflow API and has built their own middleware to control key aspects of WISEflow.

  • Creating reassessment flows requires the reassessment module on your licence. 
  • Creating a reassessment flow will require an active main flow.

Creating reassessment flows can be automated using middleware. Reassessment flows have a link to the main flow and will copy all flow settings, but will not automatically add participants, markers, etc.

Example

Creating a Reassessment Flow

Using the flowId from the main flow the endpoint POST /flow​/{flowId}​/reassessment will create a reassessment flow. If you have an integration with WISEflow and have an SIS source attached to your main flow, you can choose to synchronise the reassessment flow with SIS. In this example where everything is managed via the API, the synchronisation will remain turned off:

{
  "synchronize": false
}

A reassessment flow will have a new flowId, this will be returned when the reassessment flow has been created.

{
  "reassessmentFlowId": 547,
  "queuedForSynchronization": fals
}

 

Add Participants and Assessors to a Reassessment Flow

Using ​POST /flow​/{flowId}​/participants​/add and ​POST /flow​/{flowId}​/assessors​/add participants and assessors can be added to the newly created reassessment flow.

Adding users to a reassessment flow is the same as adding users to a main flow. Details on how to do this can be found here: Create a Flow with Multiple Participants and an Assessor.

Exporting Submissions and Assessments from a Reassessment Flow

You can also Export Submissions and Assessments using the API.