Hooks for exams

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #212289
    a23
    Participant
    Hi, I wanted to send examination data to a third part via webhooks. How can I do that? I am looking for hook that executes everytime a examination is evaluated. I want to pass the following values. User id, marks obtained, total marks, passing marks
    #212376
    logan
    Member
    Hello, use this filter in your customizer plugin. add_action('wplms_evaluate_quiz','evaluate_quiz',10,4); function evaluate_quiz($quiz_id,$marks,$user_id,$max){ //here you can execute your calls to external apis }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Hooks for exams’ is closed to new replies.