Commit 915ff337 authored by Rosana Aurélio's avatar Rosana Aurélio

Inclusão de rota para buscar token de competição.

parent 8e67870c
...@@ -185,6 +185,31 @@ paths: ...@@ -185,6 +185,31 @@ paths:
required: true required: true
schema: schema:
format: int32 format: int32
type: integer type: integer
/competitions/{competitionId}/{token}:
get:
security:
- bearerAuth: []
tags:
- competition
summary: Retrieves an competition's token
description: Retrieves an competition's token.
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: 'https://gitlab.dev.evologica.com.br/Competify/Docs/raw/master/Api/components/schemas.yaml/#/Competition'
parameters:
- name: competitionId
in: path
description: The unique identifier of the Competition.
required: true
schema:
format: int32
type: integer
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment