Returns a report on all user activity on a particular live event in authenticated organization.
Request
- HTTP Verb: GET
- URI: /report/liveeventActivity/{id}
Query Parameters
- id: live event id.
Please Note: {id}
is optional in the above request, if no {id}
is provided, the report contains all user activity on all live events in the organization.
Searchable Fields
user_id |
Example:
display activity report on live events attended by user with user_id = 123456 |
---|---|
See Advanced queries for details on how to use Searchable Fields.
Request example
$report = $API->getReportLiveeventActivity(1234);
Output Example
array( [0] => array( "portal" => "ABBREV", "live_event_reference" => 1234, "live_event_name" => "An event name", "description" => "lorem ipsum", "duration" => "02 =>15 =>00", "member_id" => 2345, "member_title" => "Mr", "member_name" => "John", "member_surname" => "Doe", "member_suffix" => "PhD", "member_email" => "user@domain.com", "date_completed" => "2014-03-02", "date_expiry" => "2014-11-02 00 =>00 =>01", "accreditation" => "5 Credits", "evaluation_statement_link" => "link_to_eval_statement", "certificate_link" => "link_to_certificate", "eval_question_1" => "answer_to_this_question", "eval_question_2" => "answer_to_this_question", "eval_question_3" => "answer_to_this_question", //... more evaluation statement questions and answers ), [1] => array( "portal" => "ABBREV", "live_event_reference" => 1234, "live_event_name" => "An event name", "description" => "lorem ipsum", "duration" => "02 =>15 =>00", "member_id" => 123456, "member_title" => "Miss", "member_name" => "Adrianne", "member_surname" => "Victor", "member_suffix" => "MBBS", "member_email" => "user@domain.com", "date_completed" => "2014-02-09", "date_expiry" => false, "accreditation" => "5 Credits", "evaluation_statement_link" => "link_to_eval_statement", "certificate_link" => "link_to_certificate", "eval_question_1" => "answer_to_this_question", "eval_question_2" => "answer_to_this_question", "eval_question_3" => "answer_to_this_question", //... more evaluation statement questions and answers ) ... )