custom targeting

Manage custom targeting through inventory_manager domain

custom targeting

Query and manage custom targeting operations through the inventory_manager domain.

Query Example

query Getcustomtargeting {
  inventory_manager {
    custom_targeting_keys_v2_pagin(limit: 10) {
      edges {
        custom_targeting_key_id
        custom_targeting_key_name
      }
      total_count
    }
  }
}

Related