Events API
This documentation describes the API endpoints for managing events in our fest management framework.
Base URL
/api/events
Endpoints
GET /
GET /Retreive a list of all events.
Response
GET /:id
GET /:idRetreive details of a specific event by its id.
Parameters
id(string)The unique ID of the event
Response
GET /type/:type
GET /type/:typeRetreive a list of all events of a specific type.
Parameters
type(string)The type of the event (EVENT, EXHIBITION, or WORKSHOP etc.)
Response
GET /organisation/:id
GET /organisation/:idRetreive a list of all events hosted by a specific organisation.
Parameters
id(string)The unique ID of the organisation
Response
POST /
POST /Create a new event.
Request
Response
PUT /:id
PUT /:idUpdate an existing event.
Parameters
id(string)The unique ID of the event
Request
Response
DELETE /:id
DELETE /:idDelete an existing event.
Parameters
id(string)The unique ID of the event
Response
Last updated
Was this helpful?