Line 0
Link Here
|
|
|
1 |
--- |
2 |
/patrons/{patron_id}/quotas: |
3 |
post: |
4 |
x-mojo-to: Patrons::Quotas#add |
5 |
operationId: addPatronQuota |
6 |
tags: |
7 |
- quotas |
8 |
summary: Add new quota for patron |
9 |
parameters: |
10 |
- $ref: "../swagger.yaml#/parameters/patron_id_pp" |
11 |
- name: body |
12 |
in: body |
13 |
description: A JSON object containing quota information |
14 |
required: true |
15 |
schema: |
16 |
$ref: "../swagger.yaml#/definitions/quota" |
17 |
produces: |
18 |
- application/json |
19 |
responses: |
20 |
"201": |
21 |
description: Quota created |
22 |
schema: |
23 |
$ref: "../swagger.yaml#/definitions/quota" |
24 |
"400": |
25 |
description: Bad request |
26 |
schema: |
27 |
$ref: "../swagger.yaml#/definitions/error" |
28 |
"404": |
29 |
description: Patron not found |
30 |
schema: |
31 |
$ref: "../swagger.yaml#/definitions/error" |
32 |
"409": |
33 |
description: Quota period clash |
34 |
schema: |
35 |
$ref: "../swagger.yaml#/definitions/error" |
36 |
"500": |
37 |
description: Internal server error |
38 |
schema: |
39 |
$ref: "../swagger.yaml#/definitions/error" |
40 |
x-koha-authorization: |
41 |
permissions: |
42 |
borrowers: manage_borrower_quotas |
43 |
get: |
44 |
x-mojo-to: Patrons::Quotas#list |
45 |
operationId: listQuotas |
46 |
tags: |
47 |
- quotas |
48 |
summary: List all quotas |
49 |
parameters: |
50 |
- $ref: "../swagger.yaml#/parameters/patron_id_pp" |
51 |
- name: only_active |
52 |
in: query |
53 |
description: Only return active quotas |
54 |
required: false |
55 |
type: boolean |
56 |
- $ref: "../swagger.yaml#/parameters/page" |
57 |
- $ref: "../swagger.yaml#/parameters/per_page" |
58 |
- $ref: "../swagger.yaml#/parameters/match" |
59 |
- $ref: "../swagger.yaml#/parameters/order_by" |
60 |
- $ref: "../swagger.yaml#/parameters/q_param" |
61 |
- $ref: "../swagger.yaml#/parameters/q_body" |
62 |
- $ref: "../swagger.yaml#/parameters/request_id_header" |
63 |
produces: |
64 |
- application/json |
65 |
responses: |
66 |
"200": |
67 |
description: A list of quotas |
68 |
schema: |
69 |
type: array |
70 |
items: |
71 |
$ref: "../swagger.yaml#/definitions/quota" |
72 |
"400": |
73 |
description: | |
74 |
Bad request. Possible `error_code` attribute values: |
75 |
* `bad_request` |
76 |
* `invalid_query` |
77 |
schema: |
78 |
$ref: "../swagger.yaml#/definitions/error" |
79 |
"403": |
80 |
description: Access forbidden |
81 |
schema: |
82 |
$ref: "../swagger.yaml#/definitions/error" |
83 |
"500": |
84 |
description: Internal server error |
85 |
schema: |
86 |
$ref: "../swagger.yaml#/definitions/error" |
87 |
x-koha-authorization: |
88 |
permissions: |
89 |
borrowers: view_borrower_quotas |
90 |
/patrons/{patron_id}/quotas/{quota_id}: |
91 |
get: |
92 |
x-mojo-to: Patrons::Quotas#get |
93 |
operationId: getPatronQuota |
94 |
tags: |
95 |
- quotas |
96 |
summary: Get quota details |
97 |
parameters: |
98 |
- $ref: "../swagger.yaml#/parameters/patron_id_pp" |
99 |
- name: quota_id |
100 |
in: path |
101 |
description: Internal quota identifier |
102 |
required: true |
103 |
type: string |
104 |
produces: |
105 |
- application/json |
106 |
responses: |
107 |
"200": |
108 |
description: A quota |
109 |
schema: |
110 |
$ref: "../swagger.yaml#/definitions/quota" |
111 |
"400": |
112 |
description: Bad request |
113 |
schema: |
114 |
$ref: "../swagger.yaml#/definitions/error" |
115 |
"404": |
116 |
description: Quota not found |
117 |
schema: |
118 |
$ref: "../swagger.yaml#/definitions/error" |
119 |
"500": |
120 |
description: Internal server error |
121 |
schema: |
122 |
$ref: "../swagger.yaml#/definitions/error" |
123 |
x-koha-authorization: |
124 |
permissions: |
125 |
borrowers: view_borrower_quotas |
126 |
put: |
127 |
x-mojo-to: Patrons::Quotas#update |
128 |
operationId: updatePatronQuota |
129 |
tags: |
130 |
- quotas |
131 |
summary: Update quota |
132 |
parameters: |
133 |
- $ref: "../swagger.yaml#/parameters/patron_id_pp" |
134 |
- $ref: "../swagger.yaml#/parameters/quota_id_pp" |
135 |
- name: body |
136 |
in: body |
137 |
description: A JSON object containing quota information |
138 |
required: true |
139 |
schema: |
140 |
$ref: "../swagger.yaml#/definitions/quota" |
141 |
produces: |
142 |
- application/json |
143 |
responses: |
144 |
"200": |
145 |
description: Quota updated |
146 |
schema: |
147 |
$ref: "../swagger.yaml#/definitions/quota" |
148 |
"400": |
149 |
description: Bad request |
150 |
schema: |
151 |
$ref: "../swagger.yaml#/definitions/error" |
152 |
"404": |
153 |
description: Quota not found |
154 |
schema: |
155 |
$ref: "../swagger.yaml#/definitions/error" |
156 |
"409": |
157 |
description: Quota period clash |
158 |
schema: |
159 |
$ref: "../swagger.yaml#/definitions/error" |
160 |
"500": |
161 |
description: Internal server error |
162 |
schema: |
163 |
$ref: "../swagger.yaml#/definitions/error" |
164 |
x-koha-authorization: |
165 |
permissions: |
166 |
borrowers: manage_borrower_quotas |
167 |
delete: |
168 |
x-mojo-to: Patrons::Quotas#delete |
169 |
operationId: deletePatronQuota |
170 |
tags: |
171 |
- quotas |
172 |
summary: Delete quota |
173 |
parameters: |
174 |
- $ref: "../swagger.yaml#/parameters/patron_id_pp" |
175 |
- name: quota_id |
176 |
in: path |
177 |
description: Internal quota identifier |
178 |
required: true |
179 |
type: integer |
180 |
produces: |
181 |
- application/json |
182 |
responses: |
183 |
"204": |
184 |
description: Quota deleted |
185 |
"400": |
186 |
description: Bad request |
187 |
schema: |
188 |
$ref: "../swagger.yaml#/definitions/error" |
189 |
"404": |
190 |
description: Quota not found |
191 |
schema: |
192 |
$ref: "../swagger.yaml#/definitions/error" |
193 |
"500": |
194 |
description: Internal server error |
195 |
schema: |
196 |
$ref: "../swagger.yaml#/definitions/error" |
197 |
x-koha-authorization: |
198 |
permissions: |
199 |
borrowers: manage_borrower_quotas |