You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
827 B
YAML
29 lines
827 B
YAML
get:
|
|
tags:
|
|
- authentication
|
|
summary: Verify an email address
|
|
parameters:
|
|
- in: path
|
|
name: code
|
|
schema:
|
|
type: string
|
|
required: true
|
|
description: a valid confirmation code
|
|
example: f8c4a54a-47ae-40f5-a0a5-356d6a35c24e
|
|
responses:
|
|
"200":
|
|
description: Email address verified, or confirmation code was incorrect
|
|
content:
|
|
application/json:
|
|
schema:
|
|
allOf:
|
|
- type: object
|
|
properties:
|
|
title:
|
|
type: string
|
|
error:
|
|
type: string
|
|
description: Translation key for client-side localisation
|
|
required:
|
|
- title
|
|
- $ref: ../../components/schemas/CommonProps.yaml#/CommonProps |