Range

The place for remote & hybrid teams to check in with each other

Integrate the Range API with the Slack API

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

Find User with Range API on New Message In Channels (Instant) from Slack API
Slack + Range
 
Try it
Send Message to a Public Channel with Slack API on New Check-In By Teammate Created from Range API
Range + Slack
 
Try it
Send Message to a Public Channel with Slack API on New Check-In Created from Range API
Range + Slack
 
Try it
Send Message to a Public Channel with Slack API on New Joined Team from Range API
Range + Slack
 
Try it
Send Message to a Private Channel with Slack API on New Check-In By Teammate Created from Range API
Range + Slack
 
Try it
New Message In Channels (Instant) from the Slack API

Emit new event when a new message is posted to one or more channels

 
Try it
New Check-In By Teammate Created from the Range API

Emit new event when a new check-in by teammate is created. See the docs.

 
Try it
New Check-In Created from the Range API

Emit new event when a new check-in is created. See the docs.

 
Try it
New Joined Team from the Range API

Emit new event when user joins a team. See the docs.

 
Try it
New Direct Message (Instant) from the Slack API

Emit new event when a message was posted in a direct message channel

 
Try it
Find User with the Range API

Finds a user by email address. See the docs.

 
Try it
Send Message to a Public Channel with the Slack API

Send a message to a public channel and customize the name and avatar of the bot that posts the message. See postMessage or scheduleMessage docs here

 
Try it
Send Message to a Private Channel with the Slack API

Send a message to a private channel and customize the name and avatar of the bot that posts the message. See postMessage or scheduleMessage docs here

 
Try it
Send a Direct Message with the Slack API

Send a direct message to a single user. See postMessage or scheduleMessage docs here

 
Try it
Build and Send a Block Kit Message (Beta) with the Slack API

Configure custom blocks and send to a channel, group, or user. See Slack's docs for more info.

 
Try it

Overview of Range

Range can help you build great products by making it easy to store, version
control, and collaborate on code and designs. The Range API
is a powerful tool that you can use to build amazing products. Here are some
examples of what you can build using Range's API:

  • A Visual Design Editor - You can use the Range API to build a graphical
    editor for visual design. With the API, you can easily create and manipulate
    complex layouts, fonts, colors, and more.
  • Version Control - The Range API makes it easy to store different versions of
    an application, store code changes in multiple branches, and collaborate on
    code.
  • Collaborative Workspaces - Create collaborative workspaces with the Range API
    that can be used to share and collaborate on code, designs, and more.
  • A Knowledge Base - Easily create and manage a knowledge base where developers
    and designers can go to answer questions and learn new skills.
  • Performance Monitoring - With the Range API, you can track the performance of
    applications and services in real time.
  • Automation - Automate tedious development and design processes with the Range
    API. You can create automated flows between core development and design
    processes, such as code review and deployment.
  • Machine Learning - Use the Range API to build smarter applications by
    integrating machine learning into the development and design processes.

Connect Range

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    range: {
      type: "app",
      app: "range",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.range.co/v1/users/auth-user`,
      headers: {
        Authorization: `Bearer ${this.range.$auth.oauth_access_token}`,
        "X-Range-App-ID": `AA0BFrfWOpGg8rTpgQAB`,
        "X-Range-Client": `pipedream/1`,
      },
    })
  },
})

Overview of Slack

The Pipedream Slack app enables you to build event-driven workflows that interact with the Slack API. When you authorize the Pipedream app's access to your workspace, you can use Pipedream workflows to perform common Slack actions, or write your own code against the Slack API.

The Pipedream Slack app is not a typical app. You don't interact with it directly as a bot, and it doesn't add custom functionality to your workspace out of the box. It makes it easier to automate anything you'd typically use the Slack API for, using Pipedream workflows.

  • Automate posting updates to your team channels
  • Create a bot to answer common questions
  • Integrate with your existing tools and services
  • And much more!

Connect Slack

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: {
    slack: {
      type: "app",
      app: "slack",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://slack.com/api/users.profile.get`,
      headers: {
        Authorization: `Bearer ${this.slack.$auth.oauth_access_token}`,
      },
    })
  },
})
Save Zoom Cloud Recordings to Google Drive and Share on Slack
Save Zoom Cloud Recordings to Google Drive and Share on Slack
Save Zoom Cloud Recordings to Google Drive and Share on Slack.
Run a Pipedream workflow on PagerDuty on-call rotations
Run a Pipedream workflow on PagerDuty on-call rotations
Run common workflows, or any Node.js code you'd like, each time a new user rotates onto an on-call schedule.

Community Posts

Airtable Webhooks with Slack + Pipedream
Airtable Webhooks with Slack + Pipedream
We love Airtable here at Pipedream. But Airtable lacks one killer feature — webhooks. We took advantage of Airtable’s Slack notifications and built a way to send webhooks to an HTTP endpoint every time a record is created or updated in a base. It takes 10 minutes to setup and it’s free.