List sites

GET /sites

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

Path Parameters

Name
Type
Description
Required / Optional

id

Number

ID of the account

Optional

Headers

Name
Value

Authorization

Basic <token>

Response

[
  {
    "id": number,
    "name": string,
    "cpm_adjustment": number,
    "is_archived": boolean,
    "account": {
        "id": number,
        "name": string
    },
    "sub_account": {
        "id": number,
        "name": string
    },
    "schain": {
        "is_active": boolean,
        "asi": string,
        "sid": string
    },
    "stored_requests": StoredRequests[],
    "blocklist": {
        "domain": string[] | null,
        "iab": string[] | null,
        "language": string[] | null,
      },
    "geotargeting": {
        "whitelist": string[] | null,
        "blacklist": string[] | null,
      }
   }
]

Last updated

Was this helpful?