Get e-learning

Returns a piece of e-learning by id.

Request

  • HTTP Verb: GET
  • URI: /elearning/{id}

Query Parameters

  • id: e-learning id.

Request example

$results = $API->getElearning(1234);

Output Example

array(
  "id" => 1234,
  "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"
)