PUT
/
v1
/
orders
curl --request PUT \
  --url https://api.quickbutik.com/v1/orders \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "order_id": "948102",
    "status": "paid",
    "shipping_info": {
      "trackingnumber": "230491712300",
      "company": "DHL"
    },
    "email_confirmation": "true",
    "skip_email_confirmation": "true",
    "paymethod_activate": "false",
    "skip_webhook": "<string>",
    "language": "en"
  }
]'
{
  "results": {}
}

Authorizations

Authorization
string
header
required

API key authentication using Basic Auth. Use your API key as both username and password. See the Authentication guide for complete setup instructions.

Body

application/json · object[]

The body is of type object[].

Response

200
application/json

Order status updated successfully

The response is of type object.