Endpoints documentations - Track-d/Tracked_Server GitHub Wiki
##Get a list of all events
GET
/events
Sample Response:
{"events":[{"event_id":1213,"event_name":"Asians Collaborating Together Conference (ACT)","event_time":"2015-04-04T14:00:00.000Z","event_desc_short":"Conference. Come join us!","event_desc_long":"One of the biggest needs that our group has identified, is the need for leadership development within our community. It is with excitement that we are announcing our second annual leadership focused conference called Asians Collaborating Together (ACT) C","event_recur":0,"loc_info":{"location_id":1,"name":"Ethnic Cultural Center","address":"1234 Some Ave NE, Seattle, WA 92101","lat":47.66,"log":-122.31}}]}
##Get a list of events for today
GET
/events_today
Sample Response:
{"events":[{"event_id":1213,"event_name":"Asians Collaborating Together Conference (ACT)","event_time":"2015-04-04T14:00:00.000Z","event_desc_short":"Conference. Come join us!","event_desc_long":"One of the biggest needs that our group has identified, is the need for leadership development within our community. It is with excitement that we are announcing our second annual leadership focused conference called Asians Collaborating Together (ACT) C","event_recur":0,"loc_info":{"location_id":1,"name":"Ethnic Cultural Center","address":"1234 Some Ave NE, Seattle, WA 92101","lat":47.66,"log":-122.31}}]}
Get a list of all organizations
GET
/organizations
Sample Response:
{"organizations":[{"org_id":1,"name":"TEST","user_name":"test","email":"[email protected]","website":null,"facebook":null,"org_desc":null,"approved":0,"loc_info":{"location_id":1,"name":"Ethnic Cultural Center","address":"1234 Some Ave NE, Seattle, WA 92101","lat":47.66,"log":-122.31}}]}
Get a specific organizations info
GET
/organizations?org_id={org_id}
Sample Response:
{"organizations":[{"org_id":563,"name":"Advertising Club","user_name":"ad_club","email":"[email protected]","website":null,"facebook":null,"org_desc":"The purpose of Ad Club is for all UW students, who are interested in \nthe advertising field, to learn more about the advertising industry, create portfolios together, and gain experience working on advertising campaigns. ","approved":1,"loc_info":{"location_id":1321,"name":"East Asia Library","address":"322 Gowen Hall\nSeattle, WA, 98105","lat":47.66,"log":-122.3}}]}
##Post event
POST
/post_event
Content-Type
:application/json
Sample post json:
{"Data" :[{"event_id":"274", "event_name": "test_event_insert"(......other fields, comma separated)}]}