Checker system API
Endpoints for checker system
Processes the callback from the checker system, updates the answer status, and calculates the score. Used only for checkers. Access disabled if used via gateway
Body
Callback response from the checker
metainteger · int64RequiredExample:
Metadata associated with the callback
12345
Responses
200
OK
401
Unauthorized
*/*
403
Forbidden
*/*
409
Conflict
*/*
500
Internal Server Error
*/*
post
POST /api/check_system_callback HTTP/1.1
Host: localhost:8080
Content-Type: application/json
Accept: */*
Content-Length: 87
{
"results": [
{
"success": true,
"out": "Hello, World!",
"msg": "OK",
"time": 150
}
],
"meta": 12345
}
No content
Was this helpful?