PHP code example of brightflair / spektrix-api
1. Go to this page and download the library: Download brightflair/spektrix-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/ */
brightflair / spektrix-api example snippets
$username = "greg\brightflair";
$clientName = "api-test";
$secretKey = "S2VlcCB5b3VyIGtuaWNrZXJzIG9uISBUaGlzIGlzIGEgdGVzdCBBUEkga2V5LCBkb24ndCB3b3JyeSE=";
$client = new BrightFlair\SpektrixAPI\Client($username, $clientName, $secretKey);
$customer = $client->getCustomerByEmail("[email protected]");
$tag = $client->getTagByName("Example tag");
$client->addTagToCustomer($customer, $tag);