Koha/api/v1/swagger/paths/rotas.json
Tomas Cohen Arazi 2b4cde96d5 Bug 28463: Add missing tags
This patch adds entries for:

- Rotas
- Circulation rules
- Macros

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-05-27 17:17:19 +02:00

80 lines
2.5 KiB
JSON

{
"/rotas/{rota_id}/stages/{stage_id}/position": {
"put": {
"x-mojo-to": "Stage#move",
"operationId": "moveStage",
"summary": "Update stage",
"tags": ["rotas"],
"parameters": [{
"name": "rota_id",
"in": "path",
"required": true,
"description": "A rotas ID",
"type": "integer"
}, {
"name": "stage_id",
"in": "path",
"required": true,
"description": "A stages ID",
"type": "integer"
}, {
"name": "position",
"in": "body",
"required": true,
"description": "A stages position in the rota",
"schema": {
"type": "integer"
}
}],
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "OK"
},
"400": {
"description": "Bad request",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"401": {
"description": "Authentication required",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"403": {
"description": "Access forbidden",
"schema": {
"$ref": "../definitions.json#/error"
}
},
"404": {
"description": "Position 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": {
"stockrotation": "1"
}
}
}
}
}