Checker system API

Endpoints for checker system

(Internal method) Handle checker system callback

post

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 · int64Required

Metadata associated with the callback

Example: 12345
Responses
200
OK
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?