E-learning report

Returns a report on all pieces of e-learning in authenticated organization.

Request

  • HTTP Verb: GET
  • URI: /report/elearning

Request example

$report = $API->getReportElearning();

Output Example

array(
  [0] => array(
     "portal" => "ABBREV",
     "e-learning_reference" => 1,
     "e-learning_name" => "A e-learning name",
     "cost" => "FREE"
     "e-learning_thumbnail" => "url_to_e-learning_thumbnail",
     "e-learning_description" => "lorem ipsum",
     "e-learning_duration" => "02:15:00",
     "e-learning_language" => "English",
     "conflict_of_interest" => "lorem ipsum",
     "author_name" => "name_of_author",
     "author_information" => "info_about_author",
     "author_thumbnail" => "url_to_author_thumbnail",
     "time_restriction" => "None",
     "accreditation" => "Accreditor 1 - 2 Units, Accreditor 2 - 4.5 Points",
     "status" => "Active",
     "started_this_portal" => 4,
     "completed_this_portal" => 3,
     "started_global_pool" => 0,
     "completed_global_pool" => 0,
     "participant_score_breakdown" => "Exam score breakdown",
     "participant_score_breakdown_pdf" => "Link to a PDF displaying exam score breakdown",
     "participant_per_answer_pdf" => "Link to a PDF displaying participants per exam answer"
  ),
  [1] => array(
     "portal" => "ABBREV",
     "e-learning_reference" => 2,
     "e-learning_name" => "Another e-learning name",
     "cost" => "FREE"
     "e-learning_thumbnail" => "url_to_e-learning_thumbnail",
     "e-learning_description" => "lorem ipsum",
     "e-learning_duration" => "01:00:00",
     "e-learning_language" => "English",
     "conflict_of_interest" => "lorem ipsum",
     "author_name" => "name_of_author",
     "author_information" => "info_about_author",
     "author_thumbnail" => "url_to_author_thumbnail",
     "time_restriction" => "10 Days after purchase",
     "accreditation" => "Accreditor 1 - 4 Units, Accreditor 2 - 2.5 Points",
     "status" => "Disabled",
     "started_this_portal" => 8,
     "completed_this_portal" => 5,
     "started_global_pool" => 3,
     "completed_global_pool" => 1,
     "participant_score_breakdown" => "Exam score breakdown",
     "participant_score_breakdown_pdf" => "Link to a PDF displaying exam score breakdown",
     "participant_per_answer_pdf" => "Link to a PDF displaying participants per exam answer"
  )
  ...
)