-
This endpoint allows you to cancel an order that is in progress. Note: Not all orders can be canceled. Orders that have already been fulfilled or have reached a certain stage in the provisioning process might not be cancelable. You'll need the
order_uuid
of the order, which you can obtain from the "List Orders" endpoint (7.2.1).Request Example:
DELETE [https://api.wayscloud.services/api/marketplace-orders/order_uuid/](https://api.wayscloud.services/api/marketplace-orders/order_uuid/)
Authorization: Token <your_api_token>Status Codes:
- 204 No Content: The order was successfully canceled.
- 401 Unauthorized: The user making the request is not authorized.
-
404 Not Found: The specified order
order_uuid
does not exist. - 409 Conflict: The order cannot be canceled due to its current state (e.g., already fulfilled or in a non-cancelable state).