Add a condition to your callback
You can use conditional callbacks to receive callbacks only if they meet certain criteria. For example, device type, Adjust SDK environment setting, and more.
When you add a condition to your callback, it takes the following structure:
prefix, {placeholder}, value, callback URL
Condition prefix
Use a prefix to define your condition(s). Adjust supports the following prefixes:
equal
This instructs Adjust to only send callbacks if it contains the same value.
notequal
This instructs Adjust to only send a callback if the value is not the same. Only use notequal
for one value. To exclude multiple values, use notcontained
.
contained
This instructs Adjust to only send callbacks that have values matching those provided in the condition. Use contained
to include events related to multiple links (or notcontained
to exclude activity from multiple sources).
notcontained
This instructs Adjust to only send callbacks that do not have these values.
Placeholders
You can set any number of placeholders as conditions.
- See the full list of Adjust placeholders.
- See our recommended placeholders for each callback trigger.
Values
Here is some general advice on the syntax to use with values.
- Use
+
instead of spaces for values containing multiple words. For example:my campaign
becomesmy+campaign
- Use
;
to include multiple values in one filter. For example:Organic;Facebook+Installs
Callback URL
Follow the instructions provided on how to set up a callback URL.
Examples
Here are a few examples of conditional callback URLs.
- Send activity measured in the sandbox environment to a test server.
equal,{environment},sandbox,http://test.your-server.com?source={tracker_name}
- Send activity measured on tablets in the sandbox environment to a test server.
equal,{environment}{device_type},sandboxtablet,http://test.your-server.com?source={tracker_name}
- Sends events recorded with tokens
abc123
orxyz456
to a production server.
contained,{event},abc123;xyz456,http://production.your-server.com?source={tracker_name}
- Sends events recorded without the network name
Facebook Installs
orOrganic
to a production server.
notcontained,{network_name},Organic;Facebook+Installs,http://production.your-server.com?source={tracker_name}