Using the Rocket Chat API, you can build a variety of communication and collaboration applications. Here are some examples of things you can build:
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/me`,
headers: {
"X-Auth-Token": `${this.rocket_chat.$auth["X-Auth-Token"]}`,
"X-User-Id": `${this.rocket_chat.$auth["X-User-Id"]}`,
},
params: {
userId: `${this.rocket_chat.$auth["X-User-Id"]}`,
},
})
},
})
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://).