Skip to content

연결된 오디언스 객체

연결된 오디언스 객체는 메시지를 보낼 오디언스을 식별하는 선택기입니다.

이 객체는 단일 연결된 오디언스 필터 또는 AND 또는 OR 연산자를 사용하는 논리 에서 연결된 여러 오디언스 필터로 구성됩니다.

다중 필터 예시:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "AND":
    [
      Connected Audience Filter,
      {
        "OR" :
          [
            Connected Audience Filter,
            Connected Audience Filter
          ]
      },
      Connected Audience Filter
    ]
}

연결된 오디언스 필터

여러 커스텀 속성 필터를 결합하면 연결된 오디언스 필터가 생성되며, ANDOR 연산자와 결합하면 연결된 오디언스 필터가 생성됩니다.

사용자 지정 속성 필터

이 필터를 사용하면 사용자의 사용자 지정 속성을 기반으로 세분화할 수 있습니다. 이러한 필터에는 최대 3개의 필드가 포함됩니다:

1
2
3
4
5
6
7
8
{
  "custom_attribute":
    {
      "custom_attribute_name": (String) the name of the custom attribute to filter on,
      "comparison": (String) one of the allowed comparisons to make against the provided value,
      "value": (String, Numeric, Boolean) the value to be compared using the provided comparison
    }
}

데이터 유형별 비교 허용

사용자 지정 속성의 데이터 유형에 따라 지정된 필터에 유효한 비교가 결정됩니다.

속성 비교 시 주의 사항

사용자 지정 속성 예제

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  "custom_attribute":
    {
      "custom_attribute_name": "eye_color",
      "comparison": "equals",
      "value": "blue"
    }
}

{
  "custom_attribute":
  {
    "custom_attribute_name": "favorite_foods",
    "comparison": "includes_value",
    "value": "pizza"
  }
}

{
  "custom_attribute":
  {
    "custom_attribute_name": "last_purchase_time",
    "comparison": "less_than_x_days_ago",
    "value": 2
  }
}

푸시 구독 필터

이 필터를 사용하면 사용자의 푸시 구독 상태를 기준으로 세분화할 수 있습니다.

필터 본문

1
2
3
4
5
6
7
{
  "push_subscription_status":
  {
    "comparison": (String) one of the following allowed comparisons,
    "value": (String) one of the following allowed values
  }
}
  • 허용된 비교: is, is_not
  • 허용되는 값: opted_in, subscribed, unsubscribed

이메일 구독 필터

이 필터를 사용하면 사용자의 이메일 구독 상태를 기준으로 세분화할 수 있습니다.

필터 본문

1
2
3
4
5
6
7
{
  "email_subscription_status":
  {
    "comparison": (String) one of the following allowed comparisons,
    "value": (String) one of the following allowed values
  }
}
  • 허용된 비교: is, is_not
  • 허용되는 값: opted_in, subscribed, unsubscribed

마지막으로 사용한 앱 필터

이 필터를 사용하면 사용자가 마지막으로 앱을 사용한 시간을 기준으로 세분화할 수 있습니다. 이 필터에는 두 개의 필드가 포함되어 있습니다:

필터 본문

1
2
3
4
5
6
7
{
  "last_used_app":
  {
    "comparison": (String) one of the allowed comparisons listed,
    "value": (String) the value to be compared using the provided comparison
  }
}
  • 허용된 비교: after, before
  • 허용 값: 날짜 및 시간(ISO 8601 문자열)
이 페이지가 얼마나 도움이 되었나요?
New Stuff!