Place order

Basically, it is changing or moving the order's status to Placed

There are 2 ways to place an order:

Here is an example on how to move order to placed status using place endpoint:

No request body is needed

PUT https://api.discover.swiss/test/market/orders/{{ orderId }}/place
{
    "order": {
        "orderNumber": "{{ orderId }}",
        "orderStatus": "Placed",
        ...
    },
    "validationMessages": []
}

Warning

It is not possible to place an order once it's paid.