mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 14:50:17 -04:00
update OpenAPI specs
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
This commit is contained in:
parent
da63d3c27b
commit
98c8a465b0
1 changed files with 18 additions and 8 deletions
|
|
@ -121,40 +121,50 @@
|
|||
"name": "code",
|
||||
"in": "query",
|
||||
"description": "Code of the flow",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "refresh_token",
|
||||
"in": "query",
|
||||
"description": "Refresh token",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "client_id",
|
||||
"in": "query",
|
||||
"description": "Client ID",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "client_secret",
|
||||
"in": "query",
|
||||
"description": "Client secret",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"500": {
|
||||
"description": "",
|
||||
"content": {
|
||||
"text/plain": {
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"200": {
|
||||
"description": "Token returned",
|
||||
"content": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue