1. Go to this page and download the library: Download dezworksdk/dezwork-php-sdk 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/ */
dezworksdk / dezwork-php-sdk example snippets
$ebranvo = new \Ebranvo\EbranvoSdk(
new \Ebranvo\Store('TOKEN AQUI'),
new \Ebranvo\Environment('live ou sandbox')
);
// A presença do id indica que é uma operação de atualização
$response = $ebranvo->addCustomer([
'id' => 123
'active' => false
]);
if ($response['success']) {
echo $response['data'];
} else {
echo $response['errorMessage'];
}
// A presença do id indica que é uma operação de atualização
$response = $ebranvo->addAddress([
'id' => 321
'active' => false
]);
if ($response['success']) {
echo $response['data'];
} else {
echo $response['errorMessage'];
}