API Method /event/list
This method retrieves the list of events. If no authentication is passed, only public events will be returned.
Arguments
startnum (optional) integer
The number starting from which the events must be retrieved
apikey (required) string
A unique key that the user gets when registering on the site
You will get 10 events beginning from the starting number. If you do not enter the starting number you will retrieve events starting from 0. Events are sorted by the start date.
Example Request
http://eventish.com/api/event/list?startnum=1&apikey=5067
Example Response
[{
"ID":"362",
"GroupID":"1",
"UserName":"john",
"UserEmail":"email@example.com",
"Status":null,
"Created":"2010",
.....
"StateName":"Alaska",
"StateCode":"AK"
},
{
"ID":"363",
"GroupID":"1",
"UserName":"john",
"UserEmail":"email@example.com",
"Status":null,
"Created":"2011",
.....
"StateName":"Alaska",
"StateCode":"AK"
},
.....
]