Koha/api/v1/swagger/paths/patrons_account.json
Tomas Cohen Arazi 8171c9d05d
Bug 23607: Make /patrons/:patron_id/account staff only
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Josef Moravec <josef.moravec@gmail.com>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
2019-09-27 14:00:48 +01:00

132 lines
3.1 KiB
JSON

{
"/patrons/{patron_id}/account": {
"get": {
"x-mojo-to": "Patrons::Account#get",
"operationId": "getPatronAccount",
"tags": [
"patron"
],
"parameters": [
{
"$ref": "../parameters.json#/patron_id_pp"
}
],
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "Patron's account balance",
"schema": {
"$ref": "../definitions.json#/patron_balance"
}
},
"401": {
"description": "Authentication required",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"403": {
"description": "Access forbidden",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"404": {
"description": "Patron not found",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"500": {
"description": "Internal server error",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"503": {
"description": "Under maintenance",
"schema": {
"$ref": "../definitions.json#/error"
}
}
},
"x-koha-authorization": {
"permissions": {
"borrowers": "edit_borrowers",
"updatecharges": "remaining_permissions"
}
}
}
},
"/patrons/{patron_id}/account/credits": {
"post": {
"x-mojo-to": "Patrons::Account#add_credit",
"operationId": "addPatronCredit",
"tags": [
"patron"
],
"parameters": [
{
"$ref": "../parameters.json#/patron_id_pp"
},
{
"name": "body",
"in": "body",
"description": "A JSON object containing credit information",
"required": true,
"schema": {
"$ref": "../definitions.json#/patron_account_credit"
}
}
],
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "Credit added",
"schema": {
"type": "object"
}
},
"401": {
"description": "Authentication required",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"403": {
"description": "Access forbidden",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"404": {
"description": "Patron not found",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"500": {
"description": "Internal server error",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"503": {
"description": "Under maintenance",
"schema": {
"$ref": "../definitions.json#/error"
}
}
},
"x-koha-authorization": {
"permissions": {
"updatecharges": "remaining_permissions"
}
}
}
}
}