Rocket Chat

The Ultimate Communication Platform

Go to site
Explore
/
Apps
/
Rocket Chat

Rocket Chat API Integrations

Build and run workflows using the Rocket Chat 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

Using the Rocket Chat API, you can build a variety of communication and collaboration applications. Here are some examples of things you can build:

  • Real-time Chat and Messaging Applications
  • Video and Voice Calling Applications
  • Private Communities with Groups and Conversations
  • File and Document Sharing Applications
  • Compliance, Security, and Privacy Applications
  • Automated Chatbots
  • Integrations with External Applications and APIs
  • Broadcasting Applications
  • Custom Dashboards and Analytics
  • Multi-Platform Applications with Client SDKs
  • In-App Notification and Push Messages
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    rocket_chat: {
      type: "app",
      app: "rocket_chat",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.rocket_chat.$auth.domain}/api/v1/permissions.listAll`,
      headers: {
        "X-Auth-Token": `${this.rocket_chat.$auth["X-Auth-Token"]}`,
        "X-User-Id": `${this.rocket_chat.$auth["X-User-Id"]}`,
      },
    })
  },
})

Choose an API to Connect with Rocket Chat API

1
-
12
of
1000+
apps by most popular

Authentication

Rocket Chat uses API keys for authentication. When you connect your Rocket Chat account, Pipedream securely stores the keys so you can easily authenticate to Rocket Chat APIs in both code and no-code steps.

Create a token in Account > Personal Access Tokens and retrieve your Token and User ID. For domain, use "xyz.rocket.chat" for the cloud version or your own root URL such as "mydomain.com" (do not include https://).