Extension Reports
Create extension report
Create a new Integrito report-data record. created_at is set to the current server time and cannot be overridden. Returns 400 if item_id is already used by another record owned by the authenticated user. Returns 403 if the referenced text exists but belongs to another user. Returns 404 if the referenced text does not exist.
post/api/v1/extension/reports/
Response
A single Integrito report-data record.
Example response
{
"success": true,
"data": {
"report": {
"id": "12",
"text_id": "345",
"item_id": "john-course1-quiz5-question9",
"plagiarism": 25.5,
"ai": 10.25,
"created_at": "1706199949000"
}
}
}