Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions OpenAPI-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,39 @@ paths:
'404':
$ref: '#/components/responses/PageNotFound'
operationId: get-events-id
'/events/user/{id}':
parameters:
- schema:
type: string
name: id
in: path
required: true
description: User ID
get:
summary: Fetch all the events from the specified user
tags:
- Events
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
error:
type: boolean
default: false
description: If any error occurred during the request
response:
type: array
items:
$ref: '#/components/schemas/EventIndex'
required:
- error
'404':
$ref: '#/components/responses/PageNotFound'
operationId: get-user-id-events
/vtc:
get:
summary: 'Fetch all the recent, featured, and featured cover VTCs'
Expand Down