Live event activity report

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:

(user_id[eq]:123456)

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

curl -H "Request-Time: Wed, 11 Dec 2013 13:15:04 +0000" \
     -H "Api-Key: 78b47a40f93378a6a487919edea6e92c" \
     -H "Signature: 0a035961fbf7d2ffdc5ca8780e0a33cb3d6c3a5f8fb0623e886c9933377d3e1e" \
     http://wceaapi.org/v1.1/report/liveventActivity

Output Example

{
  "_meta": {
   ...
  },
  "records": [
    {
      "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
    },
    {
      "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
    },
    ...
  ]
}