PHP code example of dbout / dendreo-sdk-php

1. Go to this page and download the library: Download dbout/dendreo-sdk-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/ */

    

dbout / dendreo-sdk-php example snippets


$client = new \Dbout\DendreoSdk\Client();

$client->setUsername('my-username');
$client->setApiKey('the-api-key');

$contactService = new \Dbout\DendreoSdk\Service\Contacts($client);

$newContact = new \Dbout\DendreoSdk\Model\ContactsCreateOrUpdateRequest();
$newContact->setEmail('[email protected]');
$newContact->setNom('Norman');
$newContact->setPrenom('Foster');
$newContact->setFonction('Architect');

$result = $contactService->createOrUpdate($newContact);

$config = new \Dbout\DendreoSdk\Config();
$config->setProxy('https://my-proxy.com');

$client = new \Dbout\DendreoSdk\Client($config);

$client->setUsername('my-username');
$client->setApiKey('the-api-key');