GET Get general assessment defaults¶
Returns organization-wide default settings for new assessments: completion alerts, CEFR (communication) report style, and cutoff score.
Request URL¶
GET /general
Warning
Make sure to add your API key in Header of the request
Response¶
{
"general": {
"completion_alerts": false,
"cefr_report": false,
"cutoff": 40
}
}
Notes¶
cefr_reportis alwaysfalsein the response if the company does not have theassessment_reports.communicationproduct limit enabled.
POST Update general assessment defaults¶
Updates stored defaults and optionally applies them to all existing assessments for the company.
Request URL¶
POST /general
Body parameters¶
{
"completion_alerts": true,
"cefr_report": true,
"cutoff": 60,
"updateAll": false
}
Warning
Make sure to add your API key in Header of the request
Parameters¶
Parameter |
Type |
Description |
|---|---|---|
completion_alerts |
boolean |
If true, new assessments default to notifying the owner on
completion (maps to MySQL |
cefr_report |
boolean |
If true, new assessments default |
cutoff |
number |
Overall pass threshold (0 - 100). |
updateAll |
boolean |
If true, updates all assessments default settings. |
Response¶
{
"general": {
"completion_alerts": true,
"cefr_report": false,
"cutoff": 60
}
}