From 8d5a25f0f02534572341b2f4473df4a2827258e5 Mon Sep 17 00:00:00 2001 From: Phil Sturgeon <67381+philsturgeon@users.noreply.github.com> Date: Tue, 15 Oct 2024 14:22:45 +0100 Subject: [PATCH] added missing page parameter to bookings --- openapi.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index 436fa30..db3123e 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -284,6 +284,16 @@ paths: description: Returns a list of all trip bookings by the authenticated user. tags: - Bookings + parameters: + - name: page + in: query + description: The page number to return + required: false + schema: + type: integer + minimum: 1 + default: 1 + example: 1 responses: '200': description: A list of bookings