all repos

onasty @ 73fe76ee8df1ac746de478c5bf3943b232ead3c9

a one-time notes service

onasty/api/paths/auth/resend-verification-email.yml (view raw)

Oleksandr Smirnov Oleksandr Smirnov
olexsmir@gmail.com
api: add openapi docs (#181)..., 9 months ago
1
post:
2
  tags: [Account]
3
  summary: Resend verification email
4
  security:
5
    - {}
6
7
  requestBody:
8
    required: true
9
    content:
10
      application/json:
11
        schema:
12
          $ref: '../../components/requests/EmailRequest.yml'
13
14
  responses:
15
    '200':
16
      description: Successfully resend the email
17
    '400':
18
      $ref: '../../components/responses/ErrorResponse.yml'
19
    '404':
20
      $ref: '../../components/responses/UserNotFound.yml'
21
    '500':
22
      $ref: '../../components/responses/ErrorResponse.yml'