pretix Webinar¶
Fetch host URLs¶
- GET /api/v1/organizers/(organizer)/events/(event)/webinars/¶
Returns a list of all currently available webinar calls configured for an event.
Example request:
GET /api/v1/organizers/bigevents/events/sampleconf/webinars/ HTTP/1.1 Host: pretix.eu Accept: application/json, text/javascript
Example response:
HTTP/1.1 200 OK Vary: Accept Content-Type: application/json [ { "name": "Webinar B – Sept. 8th, 2020", "hosturl": "http://pretix.eu/demo/museum/webinar/host/a9aded3d7bd4df60/30611a34f9fee5d3/" }, { "name": "Webinar A – Sept. 8, 2020", "hosturl": "http://pretix.eu/demo/museum/webinar/host/e714x7d4a4a36a04/b9cc444665xxx757/" } ]
- Query Parameters:
subevent – Limit the result to the webinar(s) for a specific subevent.
- Parameters:
organizer – The
slug
field of a valid organizerevent – The
slug
field of the event to fetch
- Status Codes:
200 OK – no error
401 Unauthorized – Authentication failure
403 Forbidden – The requested organizer or event does not exist or you have no permission to view it.