Skip to content

ThaliApp: events api

Luuk Scholten requested to merge api-events-thaliapp into master

Short description

Implement events api for ThaliApp

Steps to use this feature

List all upcoming events

  1. Go to /api/events
  2. See a list of all upcoming events

Retrieve information about one upcoming event

  1. Go to /api/events/<pk>
  2. See the details of one specific event

Retrieve all the registrations of one event

  1. Go to /api/events/<pk>/registrations
  2. See the registrations of one event

This call also includes filters for the registration status. Add a query parameter status to your url to filter between: registered, queued and cancelled. This filtering is only available for users that have the permission to change events, default users always get the results of the registered filter.

Merge request reports