# List Orders

<mark style="color:purple;">`GET`</mark> `/orders/:accountId`

Use this method to get all the orders of your account.

#### **Path Parameters**

| Name      | Type   | Description       |
| --------- | ------ | ----------------- |
| accountId | Number | ID of the account |

#### **Headers**

| Name          | Value           |
| ------------- | --------------- |
| Authorization | `Basic <token>` |

#### **Response**

{% tabs %}
{% tab title="200 : OK Orders details" %}

<pre class="language-json"><code class="lang-json">[
  {
    "id": number,
    "name": "string",
    "is_archived": boolean,
    "account": {
        "id": number,
        "name": string
    },
    "advertiser": {
        "id": number,
        "name": string,
    },
    "comment": string
<strong>  }    
</strong>]
</code></pre>

{% endtab %}

{% tab title="401 : Unauthorized" %}

```json
Unauthorized
```

{% endtab %}
{% endtabs %}
