Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extended product service orders with linked reservation id. #596

Merged
merged 3 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 28th May 2024
* Extended [Get all product service orders](../operations/productserviceorders.md#get-all-product-service-orders) with filtering parameter `LinkedReservationIds`.

## 24th May 2024
* Extended [Outlet item](../operations/outletitems.md#outlet-item) response object with `PaymentCardPaymentId`, this affects the following operations:
* [Get outlet items](../operations/outletitems.md#get-all-outlet-items)
Expand Down
7 changes: 7 additions & 0 deletions operations/productserviceorders.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ Returns all product service orders associated with the given enterprise. This op
"ae8da28c-e8a4-4141-9df0-8c998976c691",
"6b02d015-47ac-4c41-8e9f-5b4db61d4284"
],
"LinkedReservationIds":
[
"9e6d4492-315b-4089-b9d6-5b1bd2eddc1b",
"b7a3f5cb-1e69-4a5f-a069-10f461996d7f"
],
"UpdatedUtc": {
"StartUtc": "2023-04-01T00:00:00Z",
"EndUtc": "2023-05-05T00:00:00Z"
Expand All @@ -39,6 +44,7 @@ Returns all product service orders associated with the given enterprise. This op
| `EnterpriseIds` | array of string | optional, max 1000 items | Unique identifiers of the [Enterprises](enterprises.md#enterprise). |
| `ProductServiceOrderIds` | array of string | optional, max 1000 items | Unique identifiers of the [Product service order](#product-service-order). |
| `ServiceIds` | array of string | required, max 1000 items | Unique identifiers of the [Services](services.md#service). |
| `LinkedReservationIds` | array of string | optional, max 1000 items | Unique identifiers of specific [Reservations](reservations.md#reservation-ver-2023-06-06) to which product service orders are linked. |
prazi marked this conversation as resolved.
Show resolved Hide resolved
| `States` | array of string [Service order state](#service-order-state) | optional | A list of product service order states to filter by. |
| `UpdatedUtc` | [Time interval](_objects.md#time-interval) | optional, max length 3 months | Interval in which the [Product service orders](#product-service-order) were updated. |
| `Limitation` | [Limitation](../guidelines/pagination.md#limitation) | required | Limitation on the quantity of data returned. |
Expand All @@ -56,6 +62,7 @@ Returns all product service orders associated with the given enterprise. This op
"CreatorProfileId": "3cd637ef-4728-47f9-8fb1-afb900c9cdcf",
"UpdaterProfileId": "3cd637ef-4728-47f9-8fb1-afb900c9cdcf",
"BookerId": "ebd507c5-6bfd-4ca9-96aa-ffed6fa94f72",
"LinkedReservationId": "9e6d4492-315b-4089-b9d6-5b1bd2eddc1b",
"Number": "52",
"State": "Confirmed",
"Origin": "Connector",
Expand Down