Live event report

Returns a report on all live events in authenticated organization.

Request

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

Request example

$report = $API->getReportLiveevent();

Output Example

array(
  [0] => array(
     "live_event_reference" => 1,
     "live_event_name" => "Event Name",
     "date_added" => "2013-12-31",
     "author_name" => "name_of_author"
     "description" => "lorem ipsum",
     "live_event_date" => "2015-03-28",
     "expiry_date" => "2015-03-28",
     "secret_code" => "A1B4CC",
     "duration" => "02 =>15 =>00",
     "live_event_objectives" => "lorem ipsum",
     "joint_sponsorship_text" => "lorem ipsum",
     "is_accredited" => "yes",
     "accreditor_country"  => "Ireland",
     "accreditor_name" => "name_of_accreditor",
     "number_of_claimed_attendance" => 40,
     //... integration fields if any
  ),
  [1] => array(
     "live_event_reference" => 2,
     "live_event_name" => "Event Name 2",
     "date_added" => "2013-11-05",
     "author_name" => "name_of_author"
     "description" => "lorem ipsum",
     "live_event_date" => "2015-07-12",
     "expiry_date" => "2015-07-12",
     "secret_code" => "A1B4CC",
     "duration" => "06 =>00 =>00",
     "live_event_objectives" => "lorem ipsum",
     "joint_sponsorship_text" => "lorem ipsum",
     "is_accredited" => "no",
     "accreditor_country"  => "",
     "accreditor_name" => "",
     "number_of_claimed_attendance" => 100,
     //... integration fields if any
  )
  ...
)