Kartra Documentation Technical Documentation for Kartra

PHP sample: get request for a specific action

Once you have set up in your Kartra account the destination URL where you want the receive our API’s outbound pings, you will need a script that catches and interprets the data contained in those pings. Make sure it’s written in a programming language that can catch the http raw post request.

Here is a small PHP sample on how to get the raw post:

<?php 
    $postdata = file_get_contents("php://input"); 
    
    // the data comes as an json so you will need to decode it 
    $postdata_decoded = json_decode($postdata); 
    // after this you can use the info passed from kartra in your own scripts. 
    // Ex: $postdata_decoded->lead contains the lead details that triggered the action
?>

© 2024 Kartra All Rights Reserved