We have introduced support for product suppliers. This affects several endpoints.
There is a new endpoint List of suppliers, which provides a complete list of suppliers. Each supplier contains guid
and name
fields.
Endpoint List of products contains a new object supplier
containing supplier’s guid
and name
. In addition, there is a new filter (parameter) ?supplierGuid=
which allows to select only products from the given supplier.
Endpoint Product detail now contains a supplier
object with both guid
and name
.
Endpoint Order detail now contains field data.order.items[].supplierName
(guid
is not available in this case).
Endpoint POST
Order insertion now supports also field data.items[].supplierName
in the request body and the order items is created with the given supplier name. Field supplierName
is also returned in the response upon successful order insertion.