You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
---
|
|
swagger: '2.0'
|
|
info:
|
|
title: RHTE API with OpenID Connect
|
|
description: RHTE API v2.0 - An API that gives information about the Red Hat Tech Exchange
|
|
version: 2.0.0
|
|
paths:
|
|
/location:
|
|
get:
|
|
summary: Get Next RHTE Location
|
|
description: Get the location of the next RedHat Tech Exchange
|
|
operationId: GetLocation
|
|
responses:
|
|
200:
|
|
description: OK
|
|
/timeframe:
|
|
get:
|
|
summary: Get Next RHTE Timeframe
|
|
description: Get the timeframe of the next RedHat Tech Exchange
|
|
operationId: GetTimeframe
|
|
responses:
|
|
200:
|
|
description: OK
|
|
/participants:
|
|
get:
|
|
summary: Get Next RHTE Participants
|
|
description: Get the participants of the next RedHat Tech Exchange
|
|
operationId: GetParticipants
|
|
responses:
|
|
200:
|
|
description: OK
|
|
securityDefinitions:
|
|
oidc:
|
|
type: oauth2
|
|
flow: accessCode
|
|
authorizationUrl: https://filled-later.dummy/auth
|
|
tokenUrl: https://filled-later.dummy/token
|
|
scopes:
|
|
openid: Get an OpenID Connect token
|
|
security:
|
|
- oidc:
|
|
- openid
|