매장을 방문하거나 고객 서비스에 전화를 걸거나 오프라인으로 행동을 취한 사람을 그룹으로 나누고 Facebook 광고로 타게팅하세요.
예를 들어 지난 90일 동안 1,000달러 넘게 지출한 사람을 타게팅하는 방법은 다음과 같습니다.
curl \ -F 'name=90d High Value' \ -F 'rule={"inclusions":{"operator":"or","rules":[{"retention_seconds":7776000,"event_sources":[{"id":"<OFFLINE_EVENT_SET_ID>","type":"offline_events"}],"filter":{"operator":"and","filters":[{"operator":"=","field":"event","value":"Purchase"}]},"aggregation":{"type":"sum","field":"value","operator":">","value":"1000"}}]}}' \ -F 'access_token=<ACCESS_TOKEN>' \ https://graph.facebook.com/<VERSION>/act_<AD_ACCOUNT_ID>/customaudiences"
오프라인 전환으로부터의 맞춤 타겟은 오프라인 이벤트 세트에 업로드된 전환 이벤트를 기반으로 합니다. 오프라인 전환 API 문서를 참조하세요.
2018년 9월 이후로 웹사이트 맞춤 타겟, 앱 맞춤 타겟, 참여 맞춤 타겟, 오프라인 전환 데이터의 타겟에 대해 subtype
을 지원하지 않습니다. 단, 동영상의 참여 맞춤 타겟에 대해서는 subtype
이 계속 지원됩니다.
오프라인 이벤트 세트에서 맞춤 타겟을 만들려면 해당 계정이 광고 관리자에서 맞춤 타겟 서비스 약관에 이미 동의한 상태여야 합니다.
curl \ -F 'name=My New Offline Event Set' \ -F 'rule={"inclusions":{"operator":"or","rules":[{"retention_seconds":2592000,"event_sources":[{"id":"<OFFLINE_EVENT_SET_ID>","type":"offline_events"}],"filter":{"operator":"and","filters":[{"operator":"=","field":"event","value":"purchase"},{"operator":">","field":"value","value":"50+Sheet1!A2+Sheet1!A2+Sheet1!A2+"}]}}]}}' -F 'access_token=<ACCESS_TOKEN>' \ https://graph.facebook.com/<VERSION>/act_<AD_ACCOUNT_ID>/customaudiences
다음은 웹사이트의 맞춤 타겟에 가장 관련이 깊은 매개변수입니다.
이름 | 설명 |
---|---|
유형: 문자열 | 필수 항목. 클러스터 이름 |
유형: 문자열 | 필수 항목. 리퍼러 URL에 적용되는 타겟 규칙 |
유형: 문자열 | 선택 사항. 맞춤 타겟 설명 |
규칙은 계정 센터 계정을 이 타겟에 추가해야 하는지 여부를 결정하며, 오프라인 전환 API를 통해 전달되거나 오프라인 이벤트 관리자로 수동 업로드된 오프라인 이벤트에 적용됩니다. 규칙은 특정 이벤트 또는 custom_data
필드에 적용됩니다. 자세한 내용은 타겟 규칙을 참조하세요. 기타 참고 자료는 다음과 같습니다.
//Match all referring `favorite_food` containing the string `'pizza'` in the last 30 days: { "inclusions": { "operator": "or", "rules": [ { "event_sources": [ { "type": "offline_events", "id": "<OFFLINE_EVENT_SET_ID>", } ], "retention_seconds": 2592000, "filter": { "operator": "and", "filters": [ { "field": "custom_data.favorite_food", "operator": "i_contains", "value": "pizza" } ] }, } ] } }
최근 30일 이내에 비용이 100달러보다 크거나 같은 구매 이벤트를 매칭합니다. 다음 이벤트에 이 규칙을 사용해 보세요.
{ "inclusions": { "operator": "or", "rules": [ { "event_sources": [ { "type": "offline_events", "id": "<OFFLINE_EVENT_SET_ID>" } ], "retention_seconds": 2592000, "filter": { "operator": "and", "filters": [ { "field": "event", "operator": "eq", "value": "Purchase" }, { "operator": "or", "filters": [ { "field": "value", "operator": ">=", "value": "100" } ] } ] } } ] } }
제품 색상이 최근 30일 이내에 'color'라는 custom_data
필드에서 오프라인 이벤트 속성에 의해 blue
라고 정의된 구매 이벤트를 매칭합니다. 다음 이벤트에 이 규칙을 사용해 보세요.
{ "inclusions": { "operator": "or", "rules": [ { "event_sources": [ { "type": "offline_events", "id": "<OFFLINE_EVENT_SET_ID>" } ], "retention_seconds": 2592000, "filter": { "operator": "and", "filters": [ { "field": "event", "operator": "eq", "value": "Purchase" }, { "operator": "or", "filters": [ { "field": "custom_data.color", "operator": "eq", "value": "blue" } ] } ] } } ] } }