Smartsheet

Dynamic work & collaboration software

Go to site
Explore
/
Apps
/
Smartsheet

Smartsheet API Integrations

Build and run workflows using the Smartsheet API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

The Smartsheet API gives developers access to Smartsheet platform features and data, enabling you to build custom applications and integrations that extend the functionality of Smartsheet. With the Smartsheet API, you can create powerful integrations that are tailored to your specific business needs.

Using the Smartsheet API, you can:

  • Create and manage sheets, rows, and columns
  • Automate and manage sheet features such as formulas and conditional formatting
  • Develop custom sheet views, including sorting and filtering options
  • Capture and track changes with versioning
  • Read, write, and delete data
  • Create reports, dashboards, and timelines
  • Collaborate with comments and notifications
  • Store and organize files in Google Drive, Box and Dropbox
  • Run workflows and automate actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    smartsheet: {
      type: "app",
      app: "smartsheet",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.smartsheet.com/2.0/users/me`,
      headers: {
        Authorization: `Bearer ${this.smartsheet.$auth.oauth_access_token}`,
      },
    })
  },
})

Choose an API to Connect with Smartsheet API

1
-
12
of
1000+
apps by most popular

Authentication

Smartsheet uses OAuth authentication. When you connect your Smartsheet account, Pipedream will open a popup window where you can sign into Smartsheet and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Smartsheet API.

Pipedream requests the following authorization scopes when you connect your account:

ADMIN_SHEETSADMIN_SIGHTSADMIN_USERSADMIN_WEBHOOKSADMIN_WORKSPACESCREATE_SHEETSCREATE_SIGHTSDELETE_SHEETSDELETE_SIGHTSREAD_CONTACTSREAD_SHEETSREAD_SIGHTSREAD_USERSSHARE_SHEETSSHARE_SIGHTSWRITE_SHEETS
OAuth Request Configurations:
  1. authorization
    GEThttps://app.smartsheet.com/b/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    POSThttps://api.smartsheet.com/2.0/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}
  3. refreshToken
    POSThttps://api.smartsheet.com/2.0/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&grant_type=refresh_token&refresh_token={{oauth.refresh_token}}