PHP code example of masmaleki / laravel-mautic-api

1. Go to this page and download the library: Download masmaleki/laravel-mautic-api 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/ */

    

masmaleki / laravel-mautic-api example snippets


'providers' => [
	// ...
	'masmaleki\Mautic\MauticServiceProvider',
],

'aliases' => [
    //.....
    'Mautic' => 'masmaleki\Mautic\Facades\Mautic',
],

use Mautic;

$params = array(
    'firstname' => 'Edison',
    'lastname'=> 'Costa',
    'email' => '[email protected]'
);

Mautic::request('POST','contacts/new',$params);

Mautic::request('GET','contacts');

Mautic::request('GET','contacts/1');
//where 1 is unique id for a contact.

Mautic::request('Delete','contacts/1/delete');