Skip to main content

Create assessment item

POST 

/item

Creates an assessment item.

Sample request

{
"title": "Item Created via API {{$datetime iso8601}}",
"content": {
"questions": [
{
"type": "choice",
"prompt": {
"body": "What is the capital of France?"
},
"options": [
{
"text": "Option 1 (correct)",
"isKey": true
},
{
"text": "Option 2",
"isKey": false
},
{
"text": "Option 3",
"isKey": false
},
{
"text": "Option 4",
"isKey": false
}
]
}
]
},
"tags": [
{
"key": "tag-1",
"type": "string",
"value": "tag-1-value1"
},
{
"key": "tag-1",
"type": "string",
"value": "tag-1-value2"
}
]
}

Request

Responses

OK