Koha/api/v1/swagger/paths/ill_requests.yaml
Tomas Cohen Arazi 56419590cb
Bug 30719: Rename batch for ill_batch in Koha::Illrequest
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-10-17 14:45:25 -03:00

115 lines
3.2 KiB
YAML

---
/ill/requests:
get:
x-mojo-to: Illrequests#list
operationId: listIllrequests
tags:
- ill_requests
summary: List ILL requests
parameters:
- $ref: "../swagger.yaml#/parameters/page"
- $ref: "../swagger.yaml#/parameters/per_page"
- $ref: "../swagger.yaml#/parameters/match"
- $ref: "../swagger.yaml#/parameters/order_by"
- $ref: "../swagger.yaml#/parameters/q_param"
- $ref: "../swagger.yaml#/parameters/q_body"
- $ref: "../swagger.yaml#/parameters/request_id_header"
- name: x-koha-embed
in: header
required: false
description: Embed list sent as a request header
type: array
items:
type: string
enum:
- +strings
- biblio
- comments
- comments+count
- extended_attributes
- ill_batch
- library
- id_prefix
- patron
collectionFormat: csv
produces:
- application/json
responses:
"200":
description: A list of ILL requests
schema:
type: array
items:
$ref: "../swagger.yaml#/definitions/ill_request"
"403":
description: Access forbidden
schema:
$ref: "../swagger.yaml#/definitions/error"
"404":
description: Patron not found
schema:
$ref: "../swagger.yaml#/definitions/error"
"500":
description: |
Internal server error. Possible `error_code` attribute values:
* `internal_server_error`
schema:
$ref: "../swagger.yaml#/definitions/error"
"503":
description: Under maintenance
schema:
$ref: "../swagger.yaml#/definitions/error"
x-koha-authorization:
permissions:
ill: "1"
post:
x-mojo-to: Illrequests#add
operationId: addIllrequest
tags:
- ill_request
summary: Add ILL request
parameters:
- name: body
in: body
description: A JSON object containing informations about the new request
required: true
schema:
$ref: "../swagger.yaml#/definitions/ill_request"
produces:
- application/json
responses:
"201":
description: Request added
schema:
$ref: "../swagger.yaml#/definitions/ill_request"
"400":
description: Bad request
schema:
$ref: "../swagger.yaml#/definitions/error"
"401":
description: Authentication required
schema:
$ref: "../swagger.yaml#/definitions/error"
"403":
description: Access forbidden
schema:
$ref: "../swagger.yaml#/definitions/error"
"409":
description: Conflict in creating resource
schema:
$ref: "../swagger.yaml#/definitions/error"
"500":
description: |
Internal server error. Possible `error_code` attribute values:
* `internal_server_error`
schema:
$ref: "../swagger.yaml#/definitions/error"
"503":
description: Under maintenance
schema:
$ref: "../swagger.yaml#/definitions/error"
x-koha-authorization:
permissions:
ill: "1"