Webhook Events in neetoQuiz

Events are specific occurrences in neetoQuiz that you can subscribe to with a webhook. Each event will produce a payload in a pre-decided format, which will be sent to all the webhooks, that subscribe to it, once the event takes place.

Here are the events neetoQuiz currently supports subscription to. (This is a growing list and there will be additions to this list over time).

  • QuizCompletion


    QuizCompletion Event triggers when a candidate's quiz attempt is either completed or terminated. It sends a payload of the following format.

    {
      "quiz": {
        "name": "General Knowledge",
        "passingThreshold": 0
      },
      "result": {
        "result": "unevaluated",
        "correctAnswers": 2,
        "incorrectAnswers": 2
      },
      "status": "completed",
      "consumer": {
        "id": "02bfc9b5-2e9d-4c42-85f3-62fb555f02fe",
        "email": "[email protected]",
        "lastName": "Smith",
        "firstName": "Eve"
      }
    }

Read more about how to create a webhook here.

Can't find what you're looking for?