mirror of
https://github.com/valitydev/wallets-api.git
synced 2024-11-06 10:55:23 +00:00
[ci skip] deploy from ciiol
This commit is contained in:
parent
6c048489b1
commit
24a0ad4fce
@ -1800,6 +1800,12 @@
|
||||
},
|
||||
"401": {
|
||||
"$ref": "#/responses/Unauthorized"
|
||||
},
|
||||
"422": {
|
||||
"description": "Неверные данные для создания webhook'а",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/InvalidOperationParameters"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1835,6 +1841,12 @@
|
||||
},
|
||||
"401": {
|
||||
"$ref": "#/responses/Unauthorized"
|
||||
},
|
||||
"422": {
|
||||
"description": "Неверные данные для получения webhook'ов",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/InvalidOperationParameters"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1875,6 +1887,12 @@
|
||||
},
|
||||
"404": {
|
||||
"$ref": "#/responses/NotFound"
|
||||
},
|
||||
"422": {
|
||||
"description": "Неверные данные для получения webhook'а",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/InvalidOperationParameters"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1910,6 +1928,12 @@
|
||||
},
|
||||
"404": {
|
||||
"$ref": "#/responses/NotFound"
|
||||
},
|
||||
"422": {
|
||||
"description": "Неверные данные для снятия webhook'а",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/InvalidOperationParameters"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1214,6 +1214,10 @@ paths:
|
||||
$ref: '#/responses/BadRequest'
|
||||
'401':
|
||||
$ref: '#/responses/Unauthorized'
|
||||
'422':
|
||||
description: Неверные данные для создания webhook'а
|
||||
schema:
|
||||
$ref: '#/definitions/InvalidOperationParameters'
|
||||
get:
|
||||
description: Получить набор установленных webhook'ов.
|
||||
tags:
|
||||
@ -1234,6 +1238,10 @@ paths:
|
||||
$ref: '#/responses/BadRequest'
|
||||
'401':
|
||||
$ref: '#/responses/Unauthorized'
|
||||
'422':
|
||||
description: Неверные данные для получения webhook'ов
|
||||
schema:
|
||||
$ref: '#/definitions/InvalidOperationParameters'
|
||||
'/webhooks/{webhookID}':
|
||||
get:
|
||||
description: Получить webhook по его идентификатору.
|
||||
@ -1256,6 +1264,10 @@ paths:
|
||||
$ref: '#/responses/Unauthorized'
|
||||
'404':
|
||||
$ref: '#/responses/NotFound'
|
||||
'422':
|
||||
description: Неверные данные для получения webhook'а
|
||||
schema:
|
||||
$ref: '#/definitions/InvalidOperationParameters'
|
||||
delete:
|
||||
description: Снять указанный webhook.
|
||||
tags:
|
||||
@ -1275,6 +1287,10 @@ paths:
|
||||
$ref: '#/responses/Unauthorized'
|
||||
'404':
|
||||
$ref: '#/responses/NotFound'
|
||||
'422':
|
||||
description: Неверные данные для снятия webhook'а
|
||||
schema:
|
||||
$ref: '#/definitions/InvalidOperationParameters'
|
||||
/withdrawal-quotes:
|
||||
post:
|
||||
operationId: createQuote
|
||||
|
Loading…
Reference in New Issue
Block a user