Knowledgebase

Article number: 301416

Using Events via an XML feed

UserStore Data Storage & Retrieval Web-Service

Documentation of Event WebService for XML event feeds of Sitekit CMS for use as entire pages or data islands (native Non RSS)

Every events module in Sitekit CMS is exposed as Webservice and therefore XML. It can be consumed by other sites or by Sitekit to produce calendars and listings that are more specialised.

The WSDL URL is on:

/admin/ws/events.asmx

1. Events List:

/admin/ws/events.asmx/EventsList?EventChannelID=636&NrsOfWeeksForward=10&OrderBy=&FilterByField=&FilterByKeyword=&

There are like filters on any ONE of the fields outputted as well as a orderby for one field.
There are two necessary parameters - EventChannelID - and NrsOfWeeksForward all others are optional.

2. Events details

/admin/ws/events.asmx/EventsDetail?eventID=5472

One necessary parameter - eventID - and NrsOfWeeksForward all others are optional

3. Lists for the filter

The 3 lists can be used for the filter argument in the list webservice

  • list of towns
    /admin/ws/events.asmx/EventTownList?EventChannelID=636&NrsOfWeeksForward=10
  • list of venues
    /admin/ws/events.asmx/EventVenueList?EventChannelID=636&NrsOfWeeksForward=10
  • list of categories
    /admin/ws/events.asmx/EventCategoryList?EventChannelID=636&NrsOfWeeksForward=10

There are two necessary parameters EventChannelID and NrsOfWeeksForward - all others are optional

Related questions