Create site

POST /site

Use this method to create a new site.

Headers

Name
Value

Authorization

Basic <token>

Body

{
  name: string,
  account: {
    id : number, // Mandatory, accountId (looks like 1234)
    name?: string,
  }
  cpm_adjustment?: number,
  is_archived?: boolean,
  schain?: {
    is_active: boolean,
    asi: string,
    sid: string
  }
}

Response

Last updated

Was this helpful?