PHP code example of silinternational / smartsheet-php-client
1. Go to this page and download the library: Download silinternational/smartsheet-php-client 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/ */
silinternational / smartsheet-php-client example snippets
use Smartsheet\Client;
$client = new Client([
'access_token' => '1234567890',
]);
$user = $client->getUser(['id' => 123456789]);
echo $user['email'];
// [email protected]
$newUser = $client->addUser([
"email" => "[email protected]",
"name" => "test user",
"firstName" => "test",
"lastName" => "user",
"admin" => false,
"licensedSheetCreator" => false,
"resourceViewer" => false,
]);
echo $user['result']['id'];
// 1234567890
"silinternational/smartsheet-php-client": "dev-master"