API v1.0.131 Release Notes
Released on Tuesday, January 7, 2020
New Orders endpoint:
POST v1/orders/direction/{orderID}/complete
- Changes an order's Status fromOpen
toComplete
, without the need to create Shipments. Note that this action is irreversible, i.e. Status cannot be reverted toOpen
by removing Shipments, for example.New Orders endpoint:
POST v1/orders/direction/{orderID}/validate
- Performs validation on the current state of an unsubmitted order. For example, verifies that Inventory is sufficient (if enforced) and any applied Promotions are still valid. Returns HTTP status 204 (No Content) if the order is valid, otherwise 400 with an array of error objects (much like what would be returned if attempting to submit an invalid order).OpenAPI 3.0 spec exposed at
v1/openapi/v3
. 2.0 spec also exposed atv1/openapi/v2
, which is identical tov1/swagger
. The latter endpoint should be considered deprecated and will likely be removed in a future release.New property on
OpenIdConnect
model:UrlEncoded
. Set totrue
to configure for identity providers that only support passing credentials viaapplication/x-www-form-urlencoded
formatted body content.