mirror of
https://github.com/valitydev/swag-api-keys-v2.git
synced 2024-11-06 10:35:19 +00:00
73d97d2d06
* TD-635: Add initial specs * Add workflows * Fix tests * Add 404 to listApiKeys
33 lines
961 B
YAML
33 lines
961 B
YAML
---
|
||
put:
|
||
summary: Запросить отзыв ключа
|
||
description: |
|
||
Просит отозвать Api Key, для подтверждения запроса
|
||
посылает на почту запросившего письмо с ссылкой на
|
||
revokeApiKey для подтверждения операции
|
||
operationId: requestRevokeApiKey
|
||
tags:
|
||
- apiKeys
|
||
parameters:
|
||
- $ref: '#/parameters/requestID'
|
||
- $ref: '#/parameters/deadline'
|
||
- $ref: '#/parameters/partyId'
|
||
- $ref: '#/parameters/apiKeyId'
|
||
- name: status
|
||
description: Status to change Api Key into
|
||
in: body
|
||
required: true
|
||
schema:
|
||
type: string
|
||
enum:
|
||
- Revoked
|
||
responses:
|
||
'204':
|
||
description: Запрос на операцию получен
|
||
"404":
|
||
$ref: "#/responses/NotFound"
|
||
'401':
|
||
$ref: "#/responses/Unauthorized"
|
||
'400':
|
||
$ref: '#/responses/BadRequest'
|