Koha/api/v1/swagger/paths/oauth.json
Tomas Cohen Arazi 18a332e608 Bug 28370: (follow-up) More cases
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-05-25 09:28:18 +02:00

65 lines
2.1 KiB
JSON

{
"/oauth/token": {
"post": {
"x-mojo-to": "OAuth#token",
"operationId": "tokenOAuth",
"tags": ["oauth"],
"produces": [
"application/json"
],
"parameters": [
{
"name": "grant_type",
"in": "formData",
"description": "grant type (client_credentials)",
"required": true,
"type": "string"
},
{
"name": "client_id",
"in": "formData",
"description": "client id",
"type": "string"
},
{
"name": "client_secret",
"in": "formData",
"description": "client secret",
"type": "string"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "object",
"properties": {
"access_token": {
"type": "string"
},
"token_type": {
"type": "string"
},
"expires_in": {
"type": "integer"
}
},
"additionalProperties": false
}
},
"400": {
"description": "Bad Request",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"403": {
"description": "Access forbidden",
"schema": {
"$ref": "../definitions.json#/error"
}
}
}
}
}
}