Conversion tracking
We allow for two ways to implement conversion tracking.
Conversion tracking using pixels
<img src="https://conv.careerjet.net/apply/pixel.gif?click_id={CLICK_ID}&conv_type={CONV_TYPE}" width="0" height="0" alt="" loading="lazy">
The image tag needs to be added either to the page at the start of the application process, or the page that indicates the user that his/her appliation has been successful.
Conversion tracking using server-to-server postbacks
Postback using CURL:curl -X POST https://conv.careerjet.net/apply/postback \
-d "click_id={CLICK_ID}" \
-d "user_ip={USER_IP}" \
-d "conv_type={CONV_TYPE}"
Parameters
Param | Description |
---|---|
click_id | Unique ID identifying a click from our website to your website. The click_id will submitted to you in the URL we redirect to. |
conv_type | Should be either apply_start or apply_done |
user_ip | IP address of user |