Botstar

Bot application

Go to site
Explore
/
Apps
/
Botstar

Botstar API Integrations

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

Botstar allows you to build bots for a variety of purposes, including:

  • Providing customer support
  • Taking orders
  • Providing information
  • Scheduling appointments
  • Managing tasks
  • And more!
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: {
    botstar: {
      type: "app",
      app: "botstar",
    }
  },
  async run({steps, $}) {
    const data = {
      "messages": `[{"text": "Hello World"}]`,
      "userId": `9999999999`,
    }
    return await axios($, {
      method: "post",
      url: `https://api2.botstar.com/broadcast`,
      headers: {
        "Content-Type": `application/json`,
      },
      params: {
        token: `${this.botstar.$auth.access_token}`,
      },
      data,
    })
  },
})

Authentication

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

BotStar authenticate calls via API Access Token to identify which bot are being referred to. Obtain this token in Settings page of your bot.