PHP code example of antoinelemaire / braze-php

1. Go to this page and download the library: Download antoinelemaire/braze-php library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

antoinelemaire / braze-php example snippets


use Braze\BrazeClient;

$client = new BrazeClient('apiKey', 'rest.fra-01.braze.eu');

$client->user->track(
    [
        'events' => [
            [
                '_update_existing_only' => false,
                'name'                  => 'my_event_name',
                'external_id'           => '1234',
                'time'                  => (new \DateTime())->format('c'),
            ],
        ],
    ]
);

composer