What do you want to automate

with Tailscale and Wonderchat?

Prompt, edit and deploy AI agents that connect to Tailscale, Wonderchat and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Integrate the Tailscale API with the Wonderchat API
Setup the Tailscale API trigger to run a workflow which integrates with the Wonderchat API. Pipedream's integration platform allows you to integrate Tailscale and Wonderchat remarkably fast. Free for developers.

Connect Tailscale

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: {
    tailscale: {
      type: "app",
      app: "tailscale",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.tailscale.com/api/v2/tailnet/pipedream.com/users`,
      headers: {
        Authorization: `Bearer ${this.tailscale.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Wonderchat

The Wonderchat API lets you automate interactions with your Wonderchat account, streamlining conversations and enhancing customer engagement. On Pipedream, you can build workflows that trigger on specific events and automate tasks like sending messages, managing contacts, or integrating with CRMs. By coupling the Wonderchat API with Pipedream’s capabilities, you get a powerful synergy where you can seamlessly connect various apps and services, run serverless code, and manipulate data with ease.

Connect Wonderchat

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    wonderchat: {
      type: "app",
      app: "wonderchat",
    }
  },
  async run({steps, $}) {
    const data = {
      "apiKey": `${this.wonderchat.$auth.api_key}`,
      "chatbotId": `{{your_chatbot_id}}`,
      "question": `{{your_queston}}`,
      "chatlogId": `{{your_chatlog_id}}`,
      "context": `{{your_context}}`,
    }
    return await axios($, {
      method: "POST",
      url: `https://app.wonderchat.io/api/v1/chat`,
      headers: {
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo