How to integrate the smart sheet in my php website.i want to show the smartsheet of each staffs in there dashboard. I want to authenticate and show all smartsheet options in dashboard.
Asked
Active
Viewed 326 times
1 Answers
0
You can use the Smartsheet REST API from PHP to pull back information from Smartsheet and display it in a web page. Please see the Smartsheet API Documentation for information. Since Smartsheet's API is a standard REST API using OAuth 2, standard PHP libraries for calling REST APIs will work with the Smartsheet API. Some examples of calling REST APIs from PHP are below:
- Using curl and PHP to talk to a REST service
- Call a REST API in PHP (Stackoverflow)
- How to make REST calls in PHP
- Make Yahoo! Web Service REST Calls with PHP
- Interact with the Force.com REST API from PHP
If you want to experiment with the API without dealing with OAuth, the Smartsheet API supports User-generated Access Tokens to make authentication easier.

Community
- 1
- 1

Scott Willeke
- 8,884
- 1
- 40
- 52