|
Lines 171-177
Link Here
|
| 171 |
"x-mojo-to": "Holds#add", |
171 |
"x-mojo-to": "Holds#add", |
| 172 |
"operationId": "addHold", |
172 |
"operationId": "addHold", |
| 173 |
"tags": ["patrons", "holds"], |
173 |
"tags": ["patrons", "holds"], |
| 174 |
"parameters": [{ |
174 |
"parameters": [ |
|
|
175 |
{ |
| 175 |
"name": "body", |
176 |
"name": "body", |
| 176 |
"in": "body", |
177 |
"in": "body", |
| 177 |
"description": "A JSON object containing informations about the new hold", |
178 |
"description": "A JSON object containing informations about the new hold", |
|
Lines 215-220
Link Here
|
| 215 |
}, |
216 |
}, |
| 216 |
"required": [ "patron_id", "pickup_library_id" ] |
217 |
"required": [ "patron_id", "pickup_library_id" ] |
| 217 |
} |
218 |
} |
|
|
219 |
}, |
| 220 |
{ |
| 221 |
"name": "x-koha-override", |
| 222 |
"description": "Comma-separated list of overrides (valid values: any)", |
| 223 |
"in": "header", |
| 224 |
"type": "string", |
| 225 |
"required": false |
| 218 |
} |
226 |
} |
| 219 |
], |
227 |
], |
| 220 |
"consumes": ["application/json"], |
228 |
"consumes": ["application/json"], |
| 221 |
- |
|
|