Live event report

Returns a report on all live events in authenticated organization.

Request

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

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/liveevent

Output Example

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