Update site

PUT /site/:siteId

Use this method to update your site.

Path Parameters

Name
Type
Description

siteId

Number

ID of the site

Headers

Name
Value

Authorization

Basic <token>

Body

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

Response

Last updated

Was this helpful?