This library serves as a convenience wrapper around the REST API that smartsheet exposes. It also uses the Collections library from the Illuminate library in lieu of arrays, so check that out if you are unfamiliar with it.
The preferred method of installing this library is with Composer by running the following from your project root:
composer require infamoustrey/smartsheetThis library provides a fluent api for interacting with Smartsheet.
$smartsheetClient = new \Smartsheet\SmartsheetClient([ 'token' => 'yourapitoken' ]);
$smartsheetClient->getSheet('sheetid');The SmartsheetClient class is the entry point for the currently supported API surface.
$smartsheetClient = new \Smartsheet\SmartsheetClient([
'token' => 'yourapitoken',
]);
$smartsheetClient->listSheets(); // Collection<Sheet>
$smartsheetClient->getSheet('4583173393803140'); // Sheet
$smartsheetClient->getRow('4583173393803140', '7813666446436228'); // Row
$smartsheetClient->getFolder('7116448184199044'); // Folder
$smartsheetClient->getWorkspace('7116448184199044'); // Workspace
$smartsheetClient->listWorkspaces(); // Collection<Workspace>
$smartsheetClient->listContacts(); // Collection<Contact>Fetch a list of sheets
$smartsheetClient = new \Smartsheet\SmartsheetClient([ 'token' => 'yourapitoken' ]);
$smartsheetClient->listSheets(); // Collection<Sheet>Access a sheet, see the Sheet Object for a list of possible properties.
$smartsheetClient = new \Smartsheet\SmartsheetClient([ 'token' => 'yourapitoken' ]);
$sheet = $smartsheetClient->getSheet('4583173393803140');
// Access some fields
$sheet->getId(); // '4583173393803140'
$sheet->getName(); // 'sheet 1'
// Add some rows
$sheet->addRow([
'ID' => "39424808324",
'Transaction Desc' => "Toys",
'Amount' => 754.23,
]);Additional sheet operations:
$sheet = $smartsheetClient->getSheet('4583173393803140');
$sheet->getColumns(); // array
$sheet->getRows(); // Collection<Row>
$sheet->getColumnId('Primary'); // string
$sheet->addRows([
['Primary' => 'row 1', 'Status' => 'Open'],
['Primary' => 'row 2', 'Status' => 'Closed'],
]);
$sheet->updateRow('7813666446436228', [
'Status' => 'Done',
]);
$sheet->updateRows([
'7813666446436228' => ['Status' => 'Done'],
'1122334455667788' => ['Status' => 'Queued'],
]);
$sheet->deleteRow('7813666446436228');
$sheet->deleteRows(['7813666446436228', '1122334455667788']);
$sheet->rename('Renamed Sheet');
$sheet->copyTo('Copied Sheet', '7116448184199044');
$sheet->copyRowsTo(['7813666446436228'], '9988776655443322');
$sheet->addColumn([
'title' => 'Status',
'type' => 'TEXT_NUMBER',
]);
$sheet->addColumns([
['title' => 'Status', 'type' => 'TEXT_NUMBER'],
['title' => 'Owner', 'type' => 'TEXT_NUMBER'],
]);
$sheet->shareSheet([
[
'email' => 'user@example.com',
'accessLevel' => 'EDITOR',
],
]);
$sheet->getShares();For replacing data in-place, the library also exposes:
$sheet->createRow(['Primary' => 'new row']);
$sheet->replaceFirstRow(['Primary' => 'updated first row']);
$sheet->replaceRows($rows, 'Primary');
$sheet->sync($rows, 'Primary');
$sheet->dropAllRows();
$sheet->dropAndReplace($rows);
$sheet->dropAllColumnsExcept(['Primary', 'Status']);Summary field helpers:
$sheet->addSummaryField('Total', '=COUNT([Primary]:[Primary])');
$sheet->getSummaryFields();
$sheet->getSummaryFieldByName('Total');
$sheet->updateSummaryField([
'id' => 123,
'title' => 'Total',
'formula' => '=COUNT([Primary]:[Primary])',
]);
$sheet->updateSummaryFieldByName('Total', [
'title' => 'Total',
'formula' => '=COUNT([Primary]:[Primary])',
]);
$sheet->deleteSummaryField('123');
$sheet->deleteSummaryFields(['123', '456']);
$sheet->deleteAllSummaryFields();Rows can be fetched directly from the client or from a sheet collection.
$row = $smartsheetClient->getRow('4583173393803140', '7813666446436228');
$row->getId();
$row->getSheet(); // Sheet
$row->getCells(); // Collection<Cell>
$row->getCell('Primary'); // Cell|null
$row->addAttachmentLink([
'attachmentType' => 'LINK',
'name' => 'Project Docs',
'description' => 'External project documentation',
'url' => 'https://example.com/docs',
]);
$row->addAttachment('/path/to/file.pdf');
$row->delete();Fetch a workspace and access its properties. See the Workspace Object for a list of possible properties.
$smartsheetClient = new \Smartsheet\SmartsheetClient([ 'token' => 'yourapitoken' ]);
$workspace = $smartsheetClient->getWorkspace('7116448184199044'); // \Smartsheet\Resources\Workspace
$workspace->getId(); // '7116448184199044'
$workspace->getName(); // 'New workspace'
$workspace->getSheets(); // array
// Fetch a sheet by name
$workspace->getSheet('sheet name'); // Sheet
// Create a sheet with some columns
$workspace->createSheet('sheet name', [
[
"title" => "Primary",
"type" => "TEXT_NUMBER",
"primary" => true
]
]);Fetch a folder and access its properties. See the Folder Object for a list of possible properties.
$smartsheetClient = new \Smartsheet\SmartsheetClient([ 'token' => 'yourapitoken' ]);
$folder = $smartsheetClient->getFolder('7116448184199044'); // Folder
// Access some fields
$folder->getId(); // '7116448184199044'
$folder->get('name'); // 'Projects'
$folder->getPermaLink(); // 'https://app.smartsheet.com/...'
$folder->getSheets(); // array
$sheet = $folder->getSheet('sheet name');
$folder->createSheet('sheet name');
$folder->createSheets([
'sheet one',
'sheet two',
]);Fetch account contacts:
$contacts = $smartsheetClient->listContacts(); // Collection<Contact>All resource objects extend Smartsheet\Resources\Resource, which provides a few helpers for accessing raw payload data:
$sheet = $smartsheetClient->getSheet('4583173393803140');
$sheet->getData(); // full API payload as an array
$sheet->get('permalink'); // a single field from the payload
$sheet->toJSON(); // payload encoded as JSONUse this repository's issue tracker to resolve issues and ask questions.
Full api coverage! There's a lot missing, if you see something missing then put in a PR! Your help is appreciated!
Feel free to submit a PR, just be sure to explain what you are trying to fix/add when submitting it. If you do decide to add functionality, it must be covered by a test. See the contribution guide for more info.
To run the tests simply run:
./vendor/bin/phpunitStatic analysis can be run with:
vendor/bin/phpstan analyse src tests --memory-limit 1G