Campaign
How do you use S2S conversion tracking?
Learn how to transmit conversions server-side via S2S tracking (postback) to AdUp and why this method can be a reliable alternative to the classic conversion pixel.

Overview
In addition to the classic Conversion Pixel, AdUp also supports Server-to-Server (S2S) Conversion Tracking – also known as Postback Tracking.
With S2S tracking, the conversion is no longer tracked via the user's browser, but is transmitted directly from your system's server to AdUp.
This allows conversions to be measured more reliably – particularly in environments where browser tracking or third-party cookies are restricted.
How does S2S Tracking work?
With classic pixel tracking, the conversion pixel is loaded in the browser after a successful action.
With server-to-server tracking, your server handles the communication with AdUp instead.
In simplified terms, the process looks like this:
Ad │ ▼Click on ad │ ▼Transaction ID is generated │ ▼User converts │ ▼Tracking server │ ▼Postback to AdUp
The assignment between click and conversion is made via a unique Transaction-ID.
When is S2S Tracking suitable?
S2S Tracking is particularly suitable when:
browser tracking is restricted
no third-party cookies should be used
server-side tracking processes are in place
apps or in-app events are being measured
the highest data quality is required
Advantages
No third-party cookies required
Higher reliability in conversion tracking
Conversions are transmitted only upon successful action
Support for app downloads and in-app events
Independent of browser restrictions
Limitations
S2S Tracking offers many advantages, but also brings some special considerations.
Implementation is technically more demanding.
A dedicated tracking server is required.
View-through conversions cannot be measured.
Setup and testing are more complex than with pixel tracking.
Prerequisites
To use S2S Tracking, you need:
your own tracking server
a configured conversion code
access to your final destination URL
the ability to store and pass parameters on the server side
Setup
Step 1: Pass the Transaction ID
Append the placeholder {transaction_id} to your final destination URL.
Example:
t_id={transaction_id}
The parameter name can be freely chosen.
The only important thing is that your system can process the value.
Step 2: Store the Transaction ID
After the ad click, your system receives the Transaction ID.
This must be stored so that it can be assigned to a conversion later.
Step 3: Send Conversion to AdUp
As soon as a conversion occurs, your tracking server sends a postback to AdUp.
Example:
https://d.adup-tech.com/campaign/conversion/postback/3711?t=NjMy&transaction_id=JVYdMHQtFxzl20C9rYwn
The conversion is assigned to the original ad click via the Transaction ID.
External Conversion Upload
The Transaction ID is also required for the external conversion upload.
The process basically corresponds to normal S2S tracking.
During this process:
the Transaction ID is stored when the ad is clicked,
assigned to a conversion later,
then transmitted to AdUp along with the conversion data.
Without a Transaction ID, no assignment to the original click is possible.
Optional Parameters
In addition to the Transaction ID, further information can be passed.
price
Price of a single product.
Example:
price=199.99
quantity
Number of products purchased.
Example:
quantity=2
total
Total value of the conversion.
Example:
total=399.98
item_number
Product or item number.
Example:
item_number=EF_7890
order_id
Order number.
This parameter additionally serves to deduplicate conversions.
Example:
order_id=A12345
description
Optional description of the conversion.
Example:
description=TravelBooking
Best Practices
Store Transaction ID unmodified
The Transaction ID forms the basis of the entire attribution.
It should be stored unmodified and returned to AdUp.
Pass as much conversion data as possible
Additional information such as:
Order value
Order number
Item number
Quantity
improves reporting and analysis.
Use unique Order IDs
Use unique order numbers to avoid duplicate conversion reports.
Test S2S Tracking
After implementation, check:
is the Transaction ID stored correctly?
is it passed during the postback?
are conversions tracked correctly?
do order values and quantities match?
Common Sources of Error
Transaction ID is not stored
Without a Transaction ID, no conversion can be assigned to an ad click.
Transaction ID is modified
The passed Transaction ID must not be modified after the click.
Missing Order ID
If conversions are transmitted multiple times, a unique order_id helps with deduplication.
Invalid Number Formats
For price, quantity and total, the following applies:
Full stop as decimal separator
no thousands separators
maximum of two decimal places
S2S Tracking or Conversion Pixel?
Conversion Pixel | S2S Tracking |
|---|---|
Browser-based | Server-side |
Easy setup | More complex implementation |
Supports view-conversions | No view-conversions |
Cookie-based | Cookie-independent |
Ideal for standard websites | Ideal for complex systems and apps |
