List Orders

GET /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

[
  {
    "id": number,
    "name": "string",
    "is_archived": boolean,
    "account": {
        "id": number,
        "name": string
    },
    "advertiser": {
        "id": number,
        "name": string,
    },
    "comment": string
  }    
]

Last updated

Was this helpful?