List all e-learning

Returns all e-learning pieces in the authenticated organization.

Request

  • HTTP Verb: GET
  • URI: /elearning

Searchable Fields

name Example:

(name[lk]:module1, language[eq]:English)

Find all e-learnings whose:

  • name contains module1
  • And is in English
description
objectives
language
author_name
See Advanced queries for details on how to use Searchable Fields.

Request example

$results = $API->getElearning();

Output Example

array(
  [0] => array(
     "id" => 1,
     "name" => "A e-learning name",
     "cost" => "FREE"
     "thumbnail" => "url_to_e-learning_thumbnail",
     "description" => "lorem ipsum",
     "objectives" => "lorem ipsum",
     "duration" => "02:15:00",
     "language" => "English",
     "conflict_of_interest" => "lorem ipsum",
     "author_name" => "name_of_author",
     "author_information" => "info_about_author",
     "author_thumbnail" => "url_to_author_thumbnail"
  ),
  [1] => array(
     "id" => 2,
     "name" => "Another e-learning name",
     "cost" => "FREE"
     "thumbnail" => "url_to_e-learning_thumbnail",
     "description" => "lorem ipsum",
     "objectives" => "lorem ipsum",
     "duration" => "01:00:00",
     "language" => "English",
     "conflict_of_interest" => "lorem ipsum",
     "author_name" => "name_of_author",
     "author_information" => "info_about_author",
     "author_thumbnail" => "url_to_author_thumbnail"
  )
  ...
)