Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Latest commit

 

History

History
341 lines (310 loc) · 7.1 KB

events_site.md

File metadata and controls

341 lines (310 loc) · 7.1 KB

Get Events for Site

GET /events/{site}.{format}

Description

This method returns a list of the upcoming site events given a site slug

Summary

Name Value Name Value
Request Protocol GET Requires API Key Yes
Method ID 1559 Enabled Yes
Service Name events Service ID 271
Information Steward Each individual site's data steward Data Type Database
Update Frequency Realtime Cache Time 0 seconds

Notes

  • This is a 'realtime' feed. An item will be available on the api the second its up using Webhooks
  • Any value can be null

Sources

Parameters

GET /events/{site}.{format}
Parameter Type Required Description
key filter yes Valid API key
site input yes Valid site slug from /resources/sites
callback filter no JSONP callback format

Output Formats

  • json
  • xml

Examples

GET /events/{site}.{format}

Response

meta

Field Name Type Value Description
site_name string Full site name as from https://api.uwaterloo.ca/v2/resources/sites.{format}

data

Field Name Type Value Description
id integer Unique event id
title string event title
times array The outlet menu list
start date ISO 8601 formatted start date
end date ISO 8601 formatted end date
type array Type of event
link string URL of event link
updated date ISO 8601 formatted updated date

Any value can be null

Output

JSON

{
  "meta":{
    "requests":6988,
    "timestamp":1400035710,
    "status":200,
    "message":"Request successful",
    "method_id":1559,
    "method":{
      "site_name":"Engineering"
    }
  },
  "data":[
    {
      "id":1759,
      "title":"Chamath Palihapitiya: The Unconventional Venture Capitalist",
      "times":[
        {
          "start":"2014-05-09T15:30:00-04:00",
          "end":"2014-05-09T17:30:00-04:00"
        }
      ],
      "type":[
        "Information session"
      ],
      "link":"https:\/\/uwaterloo.ca\/engineering\/events\/chamath-palihapitiya-unconventional-venture-capitalist",
      "updated":"2014-05-09T09:50:42-04:00"
    },
    {
      "id":1740,
      "title":"OCE Discovery Conference",
      "times":[
        {
          "start":"2014-05-12T04:00:00-04:00",
          "end":"2014-05-13T04:00:00-04:00"
        }
      ],
      "type":[
        "Conference",
        "Information session"
      ],
      "link":"https:\/\/uwaterloo.ca\/engineering\/events\/oce-discovery-conference",
      "updated":"2014-04-24T11:52:52-04:00"
    },
    {
      "id":1748,
      "title":"You @ Waterloo Engineering",
      "times":[
        {
          "start":"2014-05-24T14:00:00-04:00",
          "end":"2014-05-24T18:00:00-04:00"
        }
      ],
      "type":[
        "Information session",
        "Workshop"
      ],
      "link":"https:\/\/uwaterloo.ca\/engineering\/you-at-waterloo",
      "updated":"2014-05-07T12:25:14-04:00"
    },
    {
      "id":1736,
      "title":"Instructional Skills Workshop",
      "times":[
        {
          "start":"2014-05-27T04:00:00-04:00",
          "end":"2014-05-30T04:00:00-04:00"
        }
      ],
      "type":[
        "Workshop"
      ],
      "link":"https:\/\/uwaterloo.ca\/engineering\/events\/instructional-skills-workshop-0",
      "updated":"2014-04-24T12:47:40-04:00"
    },
    {
      "id":1739,
      "title":"2014 Toyota High School EV Challenge",
      "times":[
        {
          "start":"2014-05-31T04:00:00-04:00",
          "end":"2014-05-31T04:00:00-04:00"
        }
      ],
      "type":[
        "Open house"
      ],
      "link":"https:\/\/uwaterloo.ca\/engineering\/events\/2014-toyota-high-school-ev-challenge",
      "updated":"2014-04-24T10:43:14-04:00"
    },
    {
      "id":1738,
      "title":"Pan IIT Conference - Toronto 2014",
      "times":[
        {
          "start":"2014-06-06T04:00:00-04:00",
          "end":"2014-06-08T04:00:00-04:00"
        }
      ],
      "type":[
        "Conference"
      ],
      "link":"https:\/\/uwaterloo.ca\/engineering\/events\/pan-iit-conference-toronto-2014",
      "updated":"2014-04-24T11:06:15-04:00"
    },
    {
      "id":1699,
      "title":"Waterloo Engineering 50th Alumni Reunion",
      "times":[
        {
          "start":"2014-09-27T04:00:00-04:00",
          "end":"2014-09-27T04:00:00-04:00"
        }
      ],
      "type":[
        "Reunion"
      ],
      "link":"https:\/\/uwaterloo.ca\/engineering\/events\/waterloo-engineering-50th-alumni-reunion",
      "updated":"2014-03-20T23:33:02-04:00"
    },
    {
      "id":1701,
      "title":"Waterloo Engineering 5, 10, 15, 20, 30, 35, 40, and 45 Alumni Reunion",
      "times":[
        {
          "start":"2014-09-27T04:00:00-04:00",
          "end":"2014-09-27T04:00:00-04:00"
        }
      ],
      "type":[
        "Reunion"
      ],
      "link":"https:\/\/uwaterloo.ca\/engineering\/events\/waterloo-engineering-5-10-15-20-30-35-40-and-45-alumni",
      "updated":"2014-04-09T12:48:32-04:00"
    },
    {
      "id":1700,
      "title":"Waterloo Engineering 25th Alumni Reunion",
      "times":[
        {
          "start":"2014-09-27T04:00:00-04:00",
          "end":"2014-09-27T04:00:00-04:00"
        }
      ],
      "type":[
        "Reunion"
      ],
      "link":"https:\/\/uwaterloo.ca\/engineering\/events\/waterloo-engineering-25th-alumni-reunion",
      "updated":"2014-04-09T12:46:13-04:00"
    }
  ]
}