From aa962b83f35d7e10b9385ab7dea194eefd285061 Mon Sep 17 00:00:00 2001 From: nielserik Date: Thu, 12 Feb 2026 11:19:17 +0100 Subject: [PATCH] MODINVUP-180 - document query params --- .../openapi/inventory-import-1.0.yaml | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/src/main/resources/openapi/inventory-import-1.0.yaml b/src/main/resources/openapi/inventory-import-1.0.yaml index f376929..94846b7 100644 --- a/src/main/resources/openapi/inventory-import-1.0.yaml +++ b/src/main/resources/openapi/inventory-import-1.0.yaml @@ -507,6 +507,31 @@ paths: get: operationId: getImportJobLogLines description: Retrieves the log of a past import job + parameters: + - in: query + name: offset + required: false + description: result set start row + schema: + type: integer + - in: query + name: limit + required: false + description: result set max rows + schema: + type: integer + - in: query + name: from + required: false + description: date range start parameter on finished date + schema: + type: string + - in: query + name: until + required: false + description: date range end parameter on finished date + schema: + type: string responses: "200": description: Logs for an import job