Zulip

Chat for distributed teams. Zulip combines the immediacy of real-time chat with an email threading model. With Zulip, you can catch up on important conversations while ignoring irrelevant ones.

Integrate the Zulip API with the Formatting API

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

[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
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Zulip

Zulip is a powerful chat platform designed for productive and threaded group conversations. With the Zulip API, you can automate and extend the capabilities of your Zulip instance directly within Pipedream. This includes managing streams, users, messages, and events. Automations can help streamline communication, respond to specific triggers, and integrate chat data with other business tools to centralize workflows.

Connect Zulip

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: {
    zulip: {
      type: "app",
      app: "zulip",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.zulip.$auth.domain}.zulipchat.com/api/v1/users/me`,
      auth: {
        username: `${this.zulip.$auth.email}`,
        password: `${this.zulip.$auth.api_key}`,
      },
    })
  },
})

Connect Formatting

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