cURL
curl --request PATCH \ --url https://api.wizcommerce.com/v2/orders/{id}/status \ --header 'Content-Type: application/json' \ --header 'X-API-Key: <api-key>' \ --data ' { "status": "draft" } '
{ "data": "<unknown>" }
Update order status. Status is passed in the request body (draft, confirmed, cancelled).
PATCH
API Key for authentication
Order ID
Request body with status
draft
confirmed
cancelled
"draft"
OK
Was this page helpful?