# Update Order

**URL** : `/api/v1/orders/{id}/`

**Method** : `PATCH`

#### Parameters

* `store_id` - String
* `type` - String
* `is_test` - Boolean
* `is_trial` - Boolean
* `download_id` - String
* `language` - String
* `campaign_params` - String
* `customer` - Integer
* `customer_account` - Integer

#### Data example

```json
{
    "store_id": "patched_store_id"
}
```

#### Success Response

**Code** : `200 OK`

**Content examples** :

```json
{
    "id": 1629789747117569,
    "created_at": "2021-08-24T07:22:27Z",
    "updated_at": "2021-11-23T07:04:07.441338Z",
    "store_id": "patched_store_id",
    "type": "normal",
    "customer_email": null,
    "is_test": false,
    "customer_reference": "",
    "is_trial": false,
    "download_id": null,
    "language": null,
    "campaign_params": null,
    "customer_first_name": null,
    "customer_last_name": null,
    "customer_company": null,
    "customer_phone": null,
    "metadata": {},
    "company": 339,
    "customer": null,
    "customer_account": null,
    "license_users": []
}
```
