Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

80 lines
2.5 KiB

{
"/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"
}
}
}
}
}