Skip to main content
PUT
/
v1
/
orders
Update order status
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[]
order_id
string

Enter order_id you would like to update status on

Example:

"948102"

status
string

Changes state of the order

Example:

"paid"

shipping_info
object

Optional: In connection with status done

email_confirmation
string

Optional: In connection with status done. Send shipping confirmation to customer?

Example:

"true"

skip_email_confirmation
string

Optional: In connection with status paid

Example:

"true"

paymethod_activate
string

Optional: In connection with status done. Default is true

Example:

"false"

skip_webhook
string

Optional: In connection with status paid

language
string

Optional: In connection with status paid. Two-letter language code (ISO 639-1)

Example:

"en"

Response

Order status updated successfully

results
object