PHP code example of stayallive / plesk-php-api

1. Go to this page and download the library: Download stayallive/plesk-php-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/ */

    

stayallive / plesk-php-api example snippets


$client = new \PleskX\Api\Client($host);
$client->setCredentials($login, $password);

$client->customer()->create([
    'cname'  => 'Plesk',
    'pname'  => 'John Smith',
    'login'  => 'john',
    'passwd' => 'secret',
    'email'  => '[email protected]',
]);

$client = new \PleskX\Api\InternalClient();
$protocols = $client->server()->getProtos();