API Method /user/events
This method retrieves the list of events created by this user. If no authentication is passed, only public events will be returned.
Arguments
uid (required) integer
User ID
startnum (optional) integer
The number starting from which the events must be returned in response to request
apikey (required) string
A unique key that the user gets when registering on the site

You will get 10 events of a user beginning from the starting number. Events are sorted by the start date in descending order.

Example Request
http://eventish.com/api/user/events?uid=5&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"

},
.....
]