Hey guys,
so I was playing around a bit for the first time with Google Analytics and I'm having some issues with tracking conversions.
Here's what I have done:
1) Created a custom goal named "Conversion"


2) Set on Affiliate network a postback to fire on conversions as follows:
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-XXXXXX-X"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-XXXXXX-X');
gtag('event', 'Conversion', {
'value': '{payout_amount}'
});
</script>
There is an extensive conversation about that on the Google Forum
https://support.google.com/google-ad.../1467299?hl=en
I suggest you check there as you will find more info!