@@ -, +, @@ - Fetch http://koha/api/v1/holds to check if you have results - Fetch api/v1/holds?_per_page=1&_page=1 and check that - Fetch api/v1/holds?_per_page=1&_page=2 and check that - Repeat above with different values for each parameters --- api/v1/swagger/paths/holds.json | 4 ++++ 1 file changed, 4 insertions(+) --- a/api/v1/swagger/paths/holds.json +++ a/api/v1/swagger/paths/holds.json @@ -102,6 +102,10 @@ "in": "query", "description": "Suspended until", "type": "string" + },{ + "$ref": "../parameters.json#/page" + }, { + "$ref": "../parameters.json#/per_page" } ], "produces": ["application/json"], --