Exam Completed Webhook

This event is triggered when a user's Exam attempt has been Completed, e.g. once it has been submitted and marked.

  • For exams which are automatically marked (e.g. pure MCQ exams), this will be sent at the same time as the Exam Submitted webhook.

  • For exams which are manually marked, this will be sent after the Exam Submitted webhook

  • This webhook will only be sent for an Exam attempt. To respond to any attempt on the platform, regardless of whether it is part of an Exam or not, you should use the Attempt Completed and/or Attempt Submitted webhooks

To subscribe to this webhook, please set up a URL endpoint capable of receiving POST requests, then let your account manager know the details so we can add it on our system.

Request Details

The request will POST a JSON payload that conforms to the following Typescript interface:

interface ExamCompletedWebhookBody {
  user: {
    id: string;
    name: string;
    email: string;
    customAttributes: Record<string, unknown>;
  };
  portal: { id: string };
  meta: { timestamp: string };
  attempt: {
    score: number;
    scoreFrac: number;
    totalAnsweredCorrectly: number;
    grade?: {
      label: string;
      minScore: number;
      isPass: boolean;
    };
    gradeCriteria?: {
      grades: {
        label: string;
        minScore: number;
        isPass: boolean;
      }[];
    };
    id: string;
    isExam: true;
    state: {
      responseQuestionMap: string[][];
      isRevoked: boolean;
      isStarted: boolean;
      sections?: {
        items: [
          {
            sectionId: string;
            responseIds: string[];
            isOpen: boolean;
            isUnlocked: boolean;
            isCompleted: boolean;
            totalQuestionsCompleted: number;
            totalQuestionsSkipped: number;
            marks: {
              points?: number;
              maxPoints?: number;
              credits?: number;
              penalties?: number;
            };
            timeStarted: string;
            timeCompleted: string;
            timeSpentInMs: number;
            score: number;
            scoreFrac: number;
            totalCorrect: number;
          }
        ];
      };
      timeStarted: string;
      timeCompleted: string;
      timeSpentInMs: number;
      results: { markingStatus: string; pendingMarks: number; status: string };
      deferred?: {
        locked: boolean;
      };
    };
    marks: {
      points?: number;
      maxPoints?: number;
      credits?: number;
      penalties?: number;
    };
    totalQuestions: number;
    tags?: {
      nonFacetTags: string[];
      skill: string[];
      difficulty: string[];
      subtopic: string[];
      topic: string[];
      subject: string[];
      module: string[];
      exam: string[];
    };
    totalAnswered: number;
    timeStarted: string;
    timeCompleted: string;
    timeSpentInMs: number;
  };
  test: { id: string; title: string };
  exam: {
    id: string;
    name: string;
    resitCount: number;
    sourceTests: string[];
    sectionGrades?: {
      id: string;
      marks: {
        points?: number;
        maxPoints?: number;
        credits?: number;
        penalties?: number;
      };
    }[];
  };
  id: string;
  timeStarted: string;
  timeCompleted: string;
  timeSpentInMs: number;
  certificate?: {
    url: string;
    certificatePdfPath: string;
  };
}

This should contain all of the information you need for most common use cases, such as emailing a confirmation to the user, or adding the attempt information to another system. You can also use this in conjunction with our APIs to fetch more data if needed.

Last updated