From 6a4b1a1d587b4f1786f304d92e5607b4d439ffc9 Mon Sep 17 00:00:00 2001 From: Max Martens Date: Thu, 2 Apr 2026 12:13:48 +0200 Subject: [PATCH] Add query params for new PurchasedTapConnectTicket attributes --- .../products/purchased_products-crud.yaml | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/src/openapi/products/purchased_products-crud.yaml b/src/openapi/products/purchased_products-crud.yaml index 95ff59e..5c5d894 100644 --- a/src/openapi/products/purchased_products-crud.yaml +++ b/src/openapi/products/purchased_products-crud.yaml @@ -912,6 +912,48 @@ paths: type: string example: HTM-1234-7654-8945 description: A printable id that needs to be next to the printed barcode on the ticket, which is used when the customer contacts the service desk. + - in: query + name: activateBeforeBefore + schema: + type: string + format: date + example: 2024-10-04 + description: Return only PurchasedTapConnectTickets that have `activateBefore` before this date. + - in: query + name: activateBeforeAfter + schema: + type: string + format: date-time + example: 2024-10-04 + description: Return only PurchasedTapConnectTickets that have `activateBefore` after this date. + - in: query + name: validtyStartBefore + schema: + type: string + format: date-time + example: 2024-10-04T12:34:56.000 + description: Return only PurchasedTapConnectTickets that have `validtyStart` before this timestamp. + - in: query + name: validtyStartAfter + schema: + type: string + format: date-time + example: 2024-10-04T12:34:56.000 + description: Return only PurchasedTapConnectTickets that have `validtyStart` after this timestamp. + - in: query + name: validtyEndBefore + schema: + type: string + format: date-time + example: 2024-10-04T12:34:56.000 + description: Return only PurchasedTapConnectTickets that have `validtyEnd` before this timestamp. + - in: query + name: validtyEndAfter + schema: + type: string + format: date-time + example: 2024-10-04T12:34:56.000 + description: Return only PurchasedTapConnectTickets that have `validtyEnd` after this timestamp. responses: "200": description: OK