Smartsheet

Dynamic work & collaboration software

Integrate the Smartsheet API with the Formatting API

Setup the Smartsheet API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Smartsheet and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with Formatting API on New Comment Added (Instant) from Smartsheet API
Smartsheet + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Row Added (Instant) from Smartsheet API
Smartsheet + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Row Deleted (Instant) from Smartsheet API
Smartsheet + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Row Updated (Instant) from Smartsheet API
Smartsheet + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Comment Added (Instant) from Smartsheet API
Smartsheet + Formatting
 
Try it
New Comment Added (Instant) from the Smartsheet API

Emit new event when a comment is added in a sheet.

 
Try it
New Row Added (Instant) from the Smartsheet API

Emit new event when a row is added to a sheet.

 
Try it
New Row Deleted (Instant) from the Smartsheet API

Emit new event when a row is deleted from a sheet.

 
Try it
New Row Updated (Instant) from the Smartsheet API

Emit new event when a row is upedated in a sheet.

 
Try it
Add Row to Sheet with the Smartsheet API

Adds a row to a sheet. See docs here

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it

Overview of Smartsheet

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

Connect Smartsheet

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}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})