自动化广告投放机制是未来数位广告的趋势之一,在今年的 Facebook F8 开发者会议中,Facebook 宣布推出广告自动化规则引擎“Ad Rules Engine”,让广告投放人员可以更智慧轻松的管理广告。
Ad Rules Engine 提供时间排程 (Schedule based ) 及条件触发 (Trigger based) 两种自动化规则设置,并已近乎即时 (near realtime) 的方式监控广告组合内的每一个洞察报告 (insight) 字段,并且透过 WebHook 通知即时通知你的广告管理系统。
以下范例规则将会套用在 ID 为 101、102、103 的广告组合中 7 天内超过 10,000 触及 (impression) 的广告,而当广告的 CPC 超过 10 时,就会触发 Ad Rules Engine 通知你的广告管理系统,让广告投放人员可以即时处理。
curl \ -F name=Rule 1 \ -F evaluation_spec={ evaluation_type : TRIGGER, trigger : { type: STATS_CHANGE, field: cpc, value: 10, operator: GREATER_THAN, }, filters : [ { field: entity_type, value: AD, operator: EQUAL }, { field: time_preset, value: LAST_7_DAYS, operator: EQUAL }, { field: adset.id, value: [101, 102, 103], operator: IN }, { field: impressions, value: 10000, operator: GREATER_THAN } ] } \ -F execution_spec={ execution_type: PING_ENDPOINT } \ -F access_token= \ https://graph.facebook.com///adrules_library
参考资料:Facebook Ad Rules