Package Exports
- smartsheet
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (smartsheet) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Smartsheet SDK for JavaScript
This is an SDK to simplify connecting to the Smartsheet API from Node.js applications.
Please note that this SDK is beta and may change significantly in the future.
Installation
To install this SDK, simply run the following command in a terminal window:
npm install smartsheetDocumentation
The Smartsheet API documentation can be found here.
See this page for code examples that show how to use this SDK.
Contributing
If you would like to contribute a change to the SDK, please fork a branch and then submit a pull request. More info here.
Support
If you have any questions or issues with this SDK please post on StackOverflow using the tag "smartsheet-api" or contact us directly at api@smartsheet.com.
Example Usage
All APIs are exposed inside the root module that is created using the following:
var client = require('smartsheet');
var smartsheet = client.createClient({accessToken:'ACCESSTOKEN'});The smartsheet variable now contains access to all of the APIs documented here. See this page for code examples that show how to call various methods using this SDK.
##Release Notes
Each specific release is available for download via Github.
v0.0.1-beta (Aug 12, 2015)
- Initial Release of the Smartsheet SDK for JavaScript