Use Make to post conversion signals to Refer Labs from tools that don’t have a native integration.
Fire the scenario at the moment you consider a conversion final (paid, confirmed, completed).
Use HTTP → Make a request and send the conversion to Refer Labs.
HTTP request template
Method: POST
URL: https://referlabs.com.au/api/discount-codes/redeem
Headers:
Content-Type: application/json
x-pepf-discount-secret: <YOUR_SECRET>
Body (JSON):
{
"discountCode": "CODE_FROM_TRIGGER",
"orderReference": "ORDER-12345",
"amount": "199.00",
"metadata": { "platform": "make" }
}199.00)If you can’t access the discount code in the trigger, add a step earlier in the scenario to fetch it (e.g. get order, get invoice, lookup custom field).
For a more controlled integration (retries, idempotency), use the Custom API guide.