Skip to main content

Value Format by Data Type

Formats used when passing property values from the SDK.
ISO 8601 format (YYYY-MM-DD) is recommended for dates. YYYYMMDD and timestamps (ms) are also supported.

String Operators

Operators available for string type properties.
String operators are case-sensitive. “Seoul” and “seoul” are treated as different values.
The is operator allows selecting multiple values. Example: region is “Seoul”, “Busan”, “Jeju”

Number Operators

Operators available for number type properties.
The is operator allows selecting multiple values. between / not between require two values.

Boolean Operators

Operators available for boolean (true/false) type properties.

Date Operators

Operators available for date type properties.

Combining Targeting Option Rules

You can set multiple conditions for a single targeting option.

Add Condition (AND)

Clicking Add Condition connects with AND logic. Only users satisfying all conditions are included. Example: Seoul Power Seller
  • region is “seoul” AND
  • trade_count greater than or equals 20
→ Users in Seoul region with 20+ trades

Add Condition Group (OR)

Clicking Add Condition Group connects with OR logic. Users satisfying any group are included. Example: Capital Region Users
  • (region is “seoul”) OR
  • (region is “gyeonggi”)
→ Users in Seoul or Gyeonggi region

Complex Conditions

Use AND and OR together to create complex conditions. Example: Capital Region Power Sellers
  • (region is “seoul” AND trade_count greater than or equals 20) OR
  • (region is “gyeonggi” AND trade_count greater than or equals 20)
→ Seoul power sellers or Gyeonggi power sellers

Context Targeting Operators

In context targeting, the following operators are available for context IDs.
When selecting multiple context IDs with the is operator, ads display if any of those IDs match.

Next Steps

Booking Campaigns

Learn how advertisers select targeting to book campaigns

FAQ

Entering exactly as passed from the SDK is critical. Especially for strings, which are case-sensitive—“Seoul” and “seoul” are treated as different values. Confirm actual passed values with your development team.
Useful for targeting user states that change over time. For example, “active users who logged in within the last 7 days”, “users with subscription expiring within 30 days”, “long-term members who joined over 1 year ago”.
Use AND (Add Condition) when all conditions must be satisfied simultaneously. Use OR (Add Condition Group) when any one of multiple conditions can be satisfied. For example, “Seoul power seller” is region=Seoul AND trade_count≥20, while “Capital region users” is region=Seoul OR region=Gyeonggi.